diff options
| author | Fuwn <[email protected]> | 2026-03-01 16:17:26 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-01 16:17:50 -0800 |
| commit | c72c8e622fcc5d1647386bb174fce9f48f60fa6c (patch) | |
| tree | 8a17fe433624bb5986e29f1767a57f56077f0303 /.eslintrc.cjs | |
| parent | chore(biome): re-enable noImplicitAnyLet rule (diff) | |
| download | due.moe-c72c8e622fcc5d1647386bb174fce9f48f60fa6c.tar.xz due.moe-c72c8e622fcc5d1647386bb174fce9f48f60fa6c.zip | |
chore(tooling): remove legacy eslint and prettier
Diffstat (limited to '.eslintrc.cjs')
| -rw-r--r-- | .eslintrc.cjs | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/.eslintrc.cjs b/.eslintrc.cjs deleted file mode 100644 index f8f4399d..00000000 --- a/.eslintrc.cjs +++ /dev/null @@ -1,43 +0,0 @@ -module.exports = { - root: true, - extends: [ - 'eslint:recommended', - 'plugin:@typescript-eslint/recommended', - 'plugin:svelte/recommended', - 'prettier' - ], - parser: '@typescript-eslint/parser', - plugins: ['@typescript-eslint'], - parserOptions: { - sourceType: 'module', - ecmaVersion: 2020, - extraFileExtensions: ['.svelte'] - }, - env: { - browser: true, - es2017: true, - node: true - }, - rules: { - '@typescript-eslint/no-unused-vars': [ - 'warn', - { - argsIgnorePattern: '^_', - varsIgnorePattern: '^_', - caughtErrorsIgnorePattern: '^_' - } - ] - }, - overrides: [ - { - files: ['*.svelte'], - parser: 'svelte-eslint-parser', - parserOptions: { - parser: '@typescript-eslint/parser' - }, - rules: { - 'svelte/no-at-html-tags': 'off' - } - } - ] -}; |