|
2 | 2 |
|
3 | 3 | module.exports = {
|
4 | 4 | root: true,
|
5 |
| - parser: '@typescript-eslint/parser', |
6 |
| - parserOptions: { |
7 |
| - ecmaVersion: 'latest', |
8 |
| - sourceType: 'module', |
9 |
| - requireConfigFile: false, |
10 |
| - babelOptions: { |
11 |
| - plugins: [ |
12 |
| - ['@babel/plugin-proposal-decorators', { decoratorsBeforeExport: true }], |
13 |
| - ], |
14 |
| - }, |
15 |
| - }, |
16 |
| - plugins: ['ember', '@typescript-eslint'], |
17 |
| - extends: [ |
18 |
| - 'eslint:recommended', |
19 |
| - 'plugin:ember/recommended', |
20 |
| - 'plugin:@typescript-eslint/recommended', |
21 |
| - 'plugin:prettier/recommended', |
22 |
| - 'plugin:qunit-dom/recommended', |
23 |
| - ], |
24 | 5 | env: {
|
25 | 6 | browser: true,
|
26 | 7 | },
|
27 |
| - rules: { |
28 |
| - '@typescript-eslint/no-empty-function': 'off', |
29 |
| - '@typescript-eslint/no-unused-vars': [ |
30 |
| - 'error', |
31 |
| - { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }, |
32 |
| - ], |
33 |
| - 'prefer-const': 'off', |
34 |
| - '@typescript-eslint/no-explicit-any': 'off', |
35 |
| - '@typescript-eslint/ban-types': 'off', |
36 |
| - '@typescript-eslint/ban-ts-comment': 'off', |
37 |
| - '@typescript-eslint/explicit-module-boundary-types': 'off', |
38 |
| - '@typescript-eslint/no-this-alias': 'off', |
39 |
| - '@typescript-eslint/no-non-null-assertion': 'off', |
40 |
| - }, |
41 | 8 | overrides: [
|
| 9 | + { |
| 10 | + files: ['**/*.{js,ts}'], |
| 11 | + parser: '@typescript-eslint/parser', |
| 12 | + parserOptions: { |
| 13 | + ecmaVersion: 'latest', |
| 14 | + sourceType: 'module', |
| 15 | + requireConfigFile: false, |
| 16 | + babelOptions: { |
| 17 | + plugins: [ |
| 18 | + [ |
| 19 | + '@babel/plugin-proposal-decorators', |
| 20 | + { decoratorsBeforeExport: true }, |
| 21 | + ], |
| 22 | + ], |
| 23 | + }, |
| 24 | + }, |
| 25 | + plugins: ['ember', '@typescript-eslint'], |
| 26 | + extends: [ |
| 27 | + 'eslint:recommended', |
| 28 | + 'plugin:ember/recommended', |
| 29 | + 'plugin:@typescript-eslint/recommended', |
| 30 | + 'plugin:prettier/recommended', |
| 31 | + 'plugin:qunit-dom/recommended', |
| 32 | + ], |
| 33 | + rules: { |
| 34 | + '@typescript-eslint/no-empty-function': 'off', |
| 35 | + '@typescript-eslint/no-unused-vars': [ |
| 36 | + 'error', |
| 37 | + { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }, |
| 38 | + ], |
| 39 | + 'prefer-const': 'off', |
| 40 | + '@typescript-eslint/no-explicit-any': 'off', |
| 41 | + '@typescript-eslint/ban-types': 'off', |
| 42 | + '@typescript-eslint/ban-ts-comment': 'off', |
| 43 | + '@typescript-eslint/explicit-module-boundary-types': 'off', |
| 44 | + '@typescript-eslint/no-this-alias': 'off', |
| 45 | + '@typescript-eslint/no-non-null-assertion': 'off', |
| 46 | + 'no-undef': 'off', |
| 47 | + 'ember/no-runloop': 'off', |
| 48 | + }, |
| 49 | + }, |
| 50 | + { |
| 51 | + files: ['**/*.gts'], |
| 52 | + parser: 'ember-eslint-parser', |
| 53 | + parserOptions: { |
| 54 | + ecmaVersion: 'latest', |
| 55 | + sourceType: 'module', |
| 56 | + requireConfigFile: false, |
| 57 | + babelOptions: { |
| 58 | + plugins: [ |
| 59 | + [ |
| 60 | + '@babel/plugin-proposal-decorators', |
| 61 | + { decoratorsBeforeExport: true }, |
| 62 | + ], |
| 63 | + ], |
| 64 | + }, |
| 65 | + warnOnUnsupportedTypeScriptVersion: false, |
| 66 | + }, |
| 67 | + plugins: ['ember'], |
| 68 | + extends: [ |
| 69 | + 'eslint:recommended', |
| 70 | + 'plugin:@typescript-eslint/recommended', |
| 71 | + 'plugin:ember/recommended', |
| 72 | + 'plugin:ember/recommended-gts', |
| 73 | + 'plugin:prettier/recommended', |
| 74 | + 'plugin:qunit-dom/recommended', |
| 75 | + ], |
| 76 | + rules: { |
| 77 | + '@typescript-eslint/no-empty-function': 'off', |
| 78 | + '@typescript-eslint/no-unused-vars': [ |
| 79 | + 'error', |
| 80 | + { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }, |
| 81 | + ], |
| 82 | + 'prefer-const': 'off', |
| 83 | + '@typescript-eslint/no-explicit-any': 'off', |
| 84 | + '@typescript-eslint/ban-types': 'off', |
| 85 | + '@typescript-eslint/ban-ts-comment': 'off', |
| 86 | + '@typescript-eslint/explicit-module-boundary-types': 'off', |
| 87 | + '@typescript-eslint/no-this-alias': 'off', |
| 88 | + '@typescript-eslint/no-non-null-assertion': 'off', |
| 89 | + 'no-undef': 'off', |
| 90 | + 'ember/template-no-let-reference': 'off', |
| 91 | + 'ember/no-tracked-properties-from-args': 'off', |
| 92 | + 'ember/no-runloop': 'off', |
| 93 | + 'node/no-deprecated-api': 'off', |
| 94 | + 'deprecation/deprecation': 'off', |
| 95 | + }, |
| 96 | + }, |
42 | 97 | // node files
|
43 | 98 | {
|
44 | 99 | files: [
|
@@ -75,15 +130,6 @@ module.exports = {
|
75 | 130 | 'qunit/no-conditional-assertions': 'off',
|
76 | 131 | },
|
77 | 132 | },
|
78 |
| - { |
79 |
| - // typescript-eslint recommends turning off no-undef for Typescript files since |
80 |
| - // Typescript will better analyse that: |
81 |
| - // https://github.com/typescript-eslint/typescript-eslint/blob/5b0e577f2552e8b2c53a3fb22edc9d219589b937/docs/linting/Troubleshooting.mdx#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors |
82 |
| - files: ['**/*.ts', '**/*.gts'], |
83 |
| - rules: { |
84 |
| - 'no-undef': 'off', |
85 |
| - }, |
86 |
| - }, |
87 | 133 | {
|
88 | 134 | // don’t enforce import order on blueprint files
|
89 | 135 | files: ['app/**', 'tests/**'],
|
|
0 commit comments