File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change 1
1
const { defineConfig } = require ( 'eslint-define-config' )
2
2
const configStandard = require ( 'eslint-config-standard/.eslintrc.json' )
3
3
const equivalents = [
4
- 'comma-spacing' ,
5
- // 'dot-notation',
6
- 'brace-style' ,
7
- 'func-call-spacing' ,
8
4
'indent' ,
9
- 'keyword-spacing' ,
10
- 'lines-between-class-members' ,
11
- 'no-array-constructor' ,
12
- 'no-dupe-class-members' ,
13
- 'no-extra-parens' ,
14
- 'no-loss-of-precision' ,
15
- 'no-redeclare' ,
16
- // 'no-throw-literal',
17
5
'no-unused-vars' ,
18
- 'no-unused-expressions' ,
19
- 'no-useless-constructor' ,
6
+ 'no-redeclare' ,
7
+ 'no-use-before-define' ,
8
+ 'brace-style' ,
9
+ 'comma-dangle' ,
20
10
'object-curly-spacing' ,
21
- 'quotes' ,
22
11
'semi' ,
12
+ 'quotes' ,
23
13
'space-before-blocks' ,
24
14
'space-before-function-paren' ,
25
- 'space-infix-ops'
15
+ 'space-infix-ops' ,
16
+ 'keyword-spacing' ,
17
+ 'comma-spacing' ,
18
+ 'no-extra-parens' ,
19
+ 'no-dupe-class-members' ,
20
+ 'no-loss-of-precision' ,
21
+ 'lines-between-class-members' ,
22
+ 'func-call-spacing' ,
23
+ 'no-array-constructor' ,
24
+ 'no-unused-expressions' ,
25
+ 'no-useless-constructor'
26
26
]
27
27
28
28
function fromEntries ( iterable ) {
You can’t perform that action at this time.
0 commit comments