forked from aws-amplify/amplify-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
323 lines (310 loc) · 12.3 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
module.exports = {
root: true,
extends: [
'airbnb',
'eslint:recommended',
'plugin:prettier/recommended',
'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react
'plugin:@typescript-eslint/eslint-recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
],
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
env: {
es6: true,
node: true,
jest: true,
},
parserOptions: {
ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
sourceType: 'module', // Allows for the use of imports
ecmaFeatures: {
jsx: true, // Allows for the parsing of JSX
arrowFunctions: true,
modules: true,
module: true,
},
},
plugins: ['@typescript-eslint', 'prettier', 'spellcheck'],
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
typescript: {},
},
react: {
version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use
},
},
rules: {
'spellcheck/spell-checker': [
1,
{
comments: false,
strings: true,
identifiers: false,
lang: 'en_US',
skipWords: ['dict', 'aff', 'hunspellchecker', 'hunspell', 'utils', 'aws', 'sdk'],
skipIfMatch: [
'http://[^s]*',
'^[-\\w]+/[-\\w\\.]+$', //For MIME Types
],
skipWordIfMatch: [
'^foobar.*$', // words that begin with foobar will not be checked
],
minLength: 3,
},
],
// Existing rules
'comma-dangle': 'off', // https://eslint.org/docs/rules/comma-dangle
'function-paren-newline': 'off', // https://eslint.org/docs/rules/function-paren-newline
'global-require': 'off', // https://eslint.org/docs/rules/global-require
'import/no-dynamic-require': 'off', // https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-dynamic-require.md
'no-inner-declarations': 'off', // https://eslint.org/docs/rules/no-inner-declarations
// New rules
'class-methods-use-this': 'off',
'import/extensions': 'off',
'import/no-default-export': 'error',
'import/prefer-default-export': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-var-requires': 'off',
// TODO Rules to enable linter pass for upgrade, fix them first
eqeqeq: 'off',
'func-names': 'off',
'lines-between-class-members': 'off',
'max-classes-per-file': 'off',
'no-lonely-if': 'off',
'no-loop-func': 'off',
'no-self-assign': 'off',
'no-shadow': 'off',
'no-unneeded-ternary': 'off',
'no-unreachable': 'off',
'no-unused-expressions': 'off',
'no-useless-catch': 'off',
'no-useless-return': 'off',
'object-shorthand': 'off',
'prefer-const': 'off',
'prefer-template': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-this-alias': 'off',
'import/named': 'off',
'import/newline-after-import': 'off',
'import/no-cycle': 'off',
'import/no-default-export': 'off',
'react/destructuring-assignment': 'off',
// TODO These rules are code beauty ones
'import/order': 'off',
'prettier/prettier': 'off',
// TODO needs to be enabled when fixing valid warnings of this error
'no-constant-condition': ['error', { checkLoops: false }],
//'no-param-reassign': ['error', { 'props': false }],
'no-param-reassign': 'off', // https://eslint.org/docs/rules/no-param-reassign
//'no-plusplus': ['error', { 'allowForLoopAfterthoughts': true }], // https://eslint.org/docs/rules/no-plusplus
'no-plusplus': 'off',
// TODO enable later
'consistent-return': 'off', // https://eslint.org/docs/rules/consistent-return
'no-console': 'off', // https://eslint.org/docs/rules/no-console
'no-prototype-builtins': 'off', // https://eslint.org/docs/rules/no-prototype-builtins
'no-unused-vars': 'off', // https://eslint.org/docs/rules/no-unused-vars
'no-use-before-define': 'off', // https://eslint.org/docs/rules/no-use-before-define
'prefer-destructuring': 'off', // https://eslint.org/docs/rules/prefer-destructuring
'prefer-object-spread': 'off', // https://eslint.org/docs/rules/prefer-object-spread
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-use-before-define': 'off',
// The errors for these rules needs a review one-by-one
'no-await-in-loop': 'off', // https://eslint.org/docs/rules/no-await-in-loop
'no-continue': 'off', // https://eslint.org/docs/rules/no-continue
'no-else-return': 'off',
'no-return-await': 'off', // https://eslint.org/docs/rules/no-return-await
// TSLint existing rules
'@typescript-eslint/class-name-casing': 'error',
curly: 'off', // Enable later
'guard-for-in': 'error',
indent: 'off', // Enable later
//'indent': ['error', 2],
'no-labels': 'error',
'no-caller': 'error',
'no-bitwise': 'error',
'no-new-wrappers': 'error',
'@typescript-eslint/no-parameter-properties': 'off',
'no-debugger': 'error',
'no-eval': 'error',
'dot-notation': 'off', // Enable later
'no-trailing-spaces': 'error',
'no-unused-expressions': 'error',
semi: 'off', // Enable later,
'@typescript-eslint/typedef': 'off', // Enable later
//'@typescript-eslint/typedef': ['error', { propertyDeclaration:true, variableDeclaration: true, memberVariableDeclaration: true }],
// TS related rules to be enabled later
'no-underscore-dangle': 'off',
'no-restricted-syntax': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/prefer-namespace-keyword': 'off',
'@typescript-eslint/no-namespace': 'off',
'no-template-curly-in-string': 'off', // Review one-by-one
'import/first': 'off',
'no-case-declarations': 'off',
yoda: 'off',
'no-undef-init': 'off',
'vars-on-top': 'off',
'no-var': 'off',
'lines-around-directive': 'off',
strict: 'off',
'import/export': 'off',
'default-case': 'off',
'no-return-assign': 'off',
'import/no-duplicates': 'off',
'@typescript-eslint/interface-name-prefix': 'off',
'no-throw-literal': 'off',
'react/static-property-placement': 'off',
'import/no-extraneous-dependencies': 'off',
'spaced-comment': 'off',
'@typescript-eslint/no-array-constructor': 'off',
'prefer-rest-params': 'off',
'no-useless-escape': 'off',
'eol-last': 'off',
'no-useless-concat': 'off',
'no-multi-str': 'off',
'array-callback-return': 'off',
'@typescript-eslint/consistent-type-assertions': 'off',
'no-extra-boolean-cast': 'off',
'no-async-promise-executor': 'off',
'no-nested-ternary': 'off',
'no-unused-expressions': 'off',
'no-sequences': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'react/jsx-filename-extension': 'off',
'react/state-in-constructor': 'off',
'react/no-access-state-in-setstate': 'off',
'react/jsx-closing-tag-location': 'off',
'react/sort-comp': 'off',
'jsx-a11y/label-has-associated-control': 'off',
'no-empty': 'off',
'import/no-unresolved': 'off',
'no-useless-constructor': 'off',
'import/no-useless-path-segments': 'off',
'no-cond-assign': 'off',
'@typescript-eslint/no-non-null-assertions': 'off',
'new-cap': 'off',
'no-new': 'off',
'no-restricted-globals': 'off',
'no-constant-condition': 'off',
'operator-assignment': 'off',
'import/no-named-default': 'off',
},
overrides: [
{
files: ['packages/amplify-graphql-transformer-*/**/*.ts', 'packages/amplify-graphql-model-transformer/**/*.ts'],
rules: {
'@typescript-eslint/no-unused-vars': 'error',
'@typescript-eslint/no-inferrable-types': 'error',
'@typescript-eslint/ban-types': 'error',
'@typescript-eslint/prefer-namespace-keyword': 'error',
'@typescript-eslint/no-namespace': 'error',
'no-template-curly-in-string': 'error', // Review one-by-one
'import/first': 'error',
yoda: 'error',
'no-undef-init': 'error',
'vars-on-top': 'error',
'no-var': 'error',
'lines-around-directive': 'error',
strict: 'error',
'import/export': 'error',
'default-case': 'error',
'no-return-assign': 'error',
'import/no-duplicates': 'error',
'@typescript-eslint/interface-name-prefix': 'error',
'no-throw-literal': 'error',
'react/static-property-placement': 'error',
'import/no-extraneous-dependencies': 'error',
'spaced-comment': 'error',
'@typescript-eslint/no-array-constructor': 'error',
'prefer-rest-params': 'error',
'no-useless-escape': 'error',
'eol-last': 'error',
'no-useless-concat': 'error',
'no-multi-str': 'error',
'array-callback-return': 'error',
'@typescript-eslint/consistent-type-assertions': 'error',
'no-extra-boolean-cast': 'error',
'no-async-promise-executor': 'error',
'no-nested-ternary': 'error',
'no-unused-expressions': 'error',
'no-sequences': 'error',
'react/jsx-filename-extension': 'error',
'react/state-in-constructor': 'error',
'react/no-access-state-in-setstate': 'error',
'react/jsx-closing-tag-location': 'error',
'react/sort-comp': 'error',
'jsx-a11y/label-has-associated-control': 'error',
'no-empty': 'error',
'import/no-unresolved': 'error',
'no-useless-constructor': 'error',
'import/no-useless-path-segments': 'error',
'no-cond-assign': 'error',
'new-cap': 'error',
'no-new': 'error',
'no-restricted-globals': 'error',
'no-constant-condition': 'error',
'operator-assignment': 'error',
'import/no-named-default': 'error',
},
},
],
ignorePatterns: [
'node_modules',
'dist',
'build',
'tests',
'__test__',
'__tests__',
'__mocks__',
'__e2e__',
'coverage',
'/packages/amplify-graphql-types-generator/test', // Not linting tests yet
'amplify-e2e-tests', // Not linting test projects yet
'graphql-transformers-e2e-tests', // Not linting test projects yet
'amplify-velocity-template', // Exclude for now as this was existing code before
// Project specific excludes
'/cypress',
'/packages/amplify-appsync-simulator/public',
'/packages/amplify-cli/scripts/post-install.js',
// Ignore project/file templates
'function-template-dir',
'/packages/graphql-predictions-transformer/lambdaFunction',
// Ignore output directories of typescript project until move to tsc and fixing src locations
'/packages/amplify-*-function-*/lib',
'/packages/amplify-appsync-simulator/lib',
'/packages/amplify-category-api/lib',
'/packages/amplify-category-auth/lib',
'/packages/amplify-category-function/lib',
'/packages/amplify-category-storage/lib',
'/packages/amplify-cli-core/lib',
'/packages/amplify-cli/lib',
'/packages/amplify-cli-logger/lib',
'/packages/amplify-codegen-appsync-model-plugin/lib',
'/packages/amplify-e2e-core/lib',
'/packages/amplify-graphql-docs-generator/lib',
'/packages/amplify-graphql-types-generator/lib',
'/packages/amplify-headless-interface/lib',
'/packages/amplify-migration-tests/lib',
'/packages/amplify-provider-awscloudformation/lib',
'/packages/amplify-storage-simulator/lib',
'/packages/amplify-ui-tests/lib',
'/packages/amplify-util-headless-input/lib',
'/packages/amplify-util-mock/lib',
'/packages/graphql-*-transformer/lib',
'/packages/graphql-mapping-template/lib',
'/packages/graphql-transformer-*/lib',
'/packages/amplify-headless-interface/lib',
'/packages/amplify-util-headless-input/lib',
'packages/amplify-graphql-*transformer*/lib',
'/packages/amplify-provider-awscloudformation/lib',
// Ignore CHANGELOG.md files
'/packages/*/CHANGELOG.md',
],
};