Skip to content

Commit 55053b7

Browse files
committed
fix(eslint-config): close standard no-use-before-define
1 parent 73a43db commit 55053b7

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

packages/eslint-config/index.cjs

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
const { defineConfig } = require('eslint-define-config')
22
const configStandard = require('eslint-config-standard/.eslintrc.json')
33
const equivalents = [
4-
'comma-spacing',
5-
// 'dot-notation',
6-
'brace-style',
7-
'func-call-spacing',
84
'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',
175
'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',
2010
'object-curly-spacing',
21-
'quotes',
2211
'semi',
12+
'quotes',
2313
'space-before-blocks',
2414
'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'
2626
]
2727

2828
function fromEntries(iterable) {

0 commit comments

Comments
 (0)