@@ -22,7 +22,6 @@ module.exports = {
22
22
react : {
23
23
version : 'detect' ,
24
24
} ,
25
- 'import/extensions' : [ '.js' , '.jsx' , '.ts' , '.tsx' ] ,
26
25
} ,
27
26
// https://github.com/sindresorhus/globals/blob/master/globals.json
28
27
env : {
@@ -36,6 +35,7 @@ module.exports = {
36
35
37
36
extends : [
38
37
'eslint:recommended' ,
38
+ 'plugin:import/recommended' ,
39
39
'plugin:import/typescript' ,
40
40
'plugin:react/recommended' ,
41
41
'plugin:react-hooks/recommended' ,
@@ -109,7 +109,6 @@ module.exports = {
109
109
'no-sequences' : 1 ,
110
110
'no-throw-literal' : 1 ,
111
111
'no-unmodified-loop-condition' : 0 ,
112
- 'no-unused-expressions' : 0 ,
113
112
'no-useless-call' : 1 ,
114
113
'no-useless-concat' : 1 ,
115
114
'no-useless-return' : 0 ,
@@ -142,7 +141,6 @@ module.exports = {
142
141
'error' ,
143
142
{ argsIgnorePattern : '^_' , ignoreRestSiblings : true } ,
144
143
] ,
145
- '@typescript-eslint/no-unused-expressions' : 'error' ,
146
144
147
145
'no-use-before-define' : 0 ,
148
146
@@ -188,8 +186,6 @@ module.exports = {
188
186
'no-bitwise' : 1 ,
189
187
'no-continue' : 0 ,
190
188
'no-inline-comments' : 0 ,
191
- 'no-lonely-if' : 'error' ,
192
- 'unicorn/no-lonely-if' : 'error' ,
193
189
'no-mixed-operators' : 0 ,
194
190
'no-negated-condition' : 'error' ,
195
191
'no-nested-ternary' : 0 ,
@@ -229,10 +225,9 @@ module.exports = {
229
225
'sort-imports' : 0 ,
230
226
'symbol-description' : 1 ,
231
227
232
- // import (https://github.com/benmosher/eslint-plugin-import)
233
- // 'import/no-unresolved': [2, { modules: 'es6' }],
234
- 'import/no-cycle' : 0 ,
235
- 'import/no-extraneous-dependencies' : 1 ,
228
+ 'import/no-extraneous-dependencies' : 'error' ,
229
+ 'import/no-duplicates' : 'error' ,
230
+ 'import/no-named-as-default' : 'error' ,
236
231
'prefer-object-spread' : 'error' ,
237
232
// react rules
238
233
'react/no-unused-state' : 'error' ,
@@ -264,12 +259,22 @@ module.exports = {
264
259
] ,
265
260
// Jest rules
266
261
'jest/no-conditional-expect' : 0 ,
262
+
263
+ 'promise/no-multiple-resolved' : 'error' ,
264
+ 'sonarjs/no-redundant-jump' : 'error' ,
265
+ 'unicorn/prefer-logical-operator-over-ternary' : 'error' ,
266
+ 'unicorn/throw-new-error' : 'error' ,
267
+ 'unicorn/prefer-includes' : 'error' ,
268
+ 'no-lonely-if' : 'error' ,
269
+ 'unicorn/no-lonely-if' : 'error' ,
270
+ 'no-unused-expressions' : 'off' ,
271
+ '@typescript-eslint/no-unused-expressions' : 'error' ,
267
272
} ,
268
273
269
- plugins : [ 'import' , ' @typescript-eslint', 'unicorn' ] ,
274
+ plugins : [ '@typescript-eslint' , 'promise' , 'sonarjs ', 'unicorn' ] ,
270
275
271
276
overrides : [
272
- // Cypress plugin, global, etc only for cypress directory
277
+ // Cypress plugin, global, etc., only for cypress directory
273
278
// https://github.com/cypress-io/eslint-plugin-cypress
274
279
// cypress clashes with jest expect()
275
280
{
@@ -293,13 +298,6 @@ module.exports = {
293
298
'jest/no-conditional-expect' : 0 ,
294
299
} ,
295
300
} ,
296
- {
297
- // Converted from 'dependencies' options in ancient config
298
- files : [ '**/spec/**' , '**/sample-*/**' ] ,
299
- rules : {
300
- 'import/no-cycle' : 0 ,
301
- } ,
302
- } ,
303
301
{
304
302
// Resources are typically our helper scripts; make life easier there
305
303
files : [ 'resources/**' , '**/resources/**' , 'scripts/**' ] ,
@@ -322,6 +320,24 @@ module.exports = {
322
320
'no-console' : 'off' ,
323
321
'no-new' : 'off' ,
324
322
'no-alert' : 'off' ,
323
+ 'import/no-unresolved' : 'off' ,
324
+ } ,
325
+ } ,
326
+ // Ignore imported dependencies from tests files
327
+ {
328
+ files : [ '**/__tests__/**' , 'webpack.config.js' ] ,
329
+ rules : {
330
+ 'import/no-extraneous-dependencies' : 'off' ,
331
+ } ,
332
+ } ,
333
+ // Allow import `vscode` package
334
+ {
335
+ files : [
336
+ 'packages/vscode-graphql/**' ,
337
+ 'packages/vscode-graphql-execution/**' ,
338
+ ] ,
339
+ rules : {
340
+ 'import/no-unresolved' : [ 'error' , { ignore : [ 'vscode' ] } ] ,
325
341
} ,
326
342
} ,
327
343
] ,
0 commit comments