Initial commit

This commit is contained in:
Pandipipas
2026-02-07 14:43:43 +01:00
committed by GitHub
commit 6955d2588f
37 changed files with 12950 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// @ts-check
import tseslint from 'typescript-eslint';
import browser from './eslint.browser.js';
import extension from './eslint.extension.js';
/* Exists so anything looking for an ESLint config file (including VSCode and the `eslint` command) can find the rules. */
export default tseslint.config([
{
ignores: [
// Ignore built files.
'dashboard/**/*',
'extension/**/*',
'graphics/**/*',
'shared/dist/**/*',
],
},
browser,
extension,
]);