@@ -12,18 +12,16 @@ const config = [
12
12
{
13
13
name : '@textshq/eslint-config.basic' ,
14
14
rules : {
15
- semi : [ 'error' , 'never' ] ,
15
+ // NOTE: Stylistic rules such as `semi` and `arrow-parens` have been
16
+ // deprecated in mainline ESLint and now live in ESLint Stylistic
17
+ // (https://eslint.style/) instead. This is configured in style.mjs.
16
18
'no-constant-binary-expression' : 'error' ,
17
- 'arrow-parens' : [ 'error' , 'as-needed' ] ,
18
19
'no-param-reassign' : 'warn' ,
19
20
'import/no-webpack-loader-syntax' : 'off' ,
20
21
'import/prefer-default-export' : 'off' ,
21
22
camelcase : 'off' ,
22
23
'consistent-return' : 'off' ,
23
- 'implicit-arrow-linebreak' : 'off' ,
24
24
'max-classes-per-file' : 'off' ,
25
- 'max-len' : 'off' ,
26
- 'newline-per-chained-call' : 'off' ,
27
25
'no-alert' : 'off' ,
28
26
'no-await-in-loop' : 'off' ,
29
27
'no-bitwise' : 'off' ,
@@ -34,7 +32,6 @@ const config = [
34
32
'no-plusplus' : 'off' ,
35
33
'no-restricted-syntax' : 'off' ,
36
34
'no-underscore-dangle' : 'off' ,
37
- 'object-curly-newline' : 'off' ,
38
35
'prefer-template' : 'off' ,
39
36
} ,
40
37
} ,
0 commit comments