Skip to content

Commit cb0bfdf

Browse files
committed
edit eslintrc
1 parent 77d3096 commit cb0bfdf

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

.eslintrc.js

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,27 @@ module.exports = {
33
plugins: ['@typescript-eslint'],
44
extends: [
55
'plugin:@typescript-eslint/recommended',
6-
'plugin:react/recommended'
6+
'plugin:react/recommended',
77
],
88
settings: {
99
react: {
10-
version: 'detect'
11-
}
10+
version: 'detect',
11+
},
1212
},
1313
rules: {
1414
indent: 'off',
1515
'@typescript-eslint/indent': 'off',
1616
'@typescript-eslint/camelcase': 'off',
1717
'@typescript-eslint/no-use-before-define': 'off',
1818
'@typescript-eslint/explicit-function-return-type': 'off',
19-
'@typescript-eslint/member-delimiter-style': 0,
20-
'@typescript-eslint/no-non-null-assertion': 0,
21-
'@typescript-eslint/no-explicit-any': 0,
22-
'@typescript-eslint/explicit-member-accessibility': 0,
23-
'@typescript-eslint/no-object-literal-type-assertion': 0,
24-
'@typescript-eslint/array-type': 0,
25-
'@typescript-eslint/explicit-member-accessibility': 0,
26-
'@typescript-eslint/no-parameter-properties': 0
27-
}
19+
'@typescript-eslint/member-delimiter-style': 'off',
20+
'@typescript-eslint/no-non-null-assertion': 'off',
21+
'@typescript-eslint/no-explicit-any': 'off',
22+
'@typescript-eslint/explicit-member-accessibility': 'off',
23+
'@typescript-eslint/no-object-literal-type-assertion': 'off',
24+
'@typescript-eslint/array-type': 'off',
25+
'@typescript-eslint/explicit-member-accessibility': 'off',
26+
'@typescript-eslint/no-parameter-properties': 'off',
27+
'@typescript-eslint/ban-ts-ignore': 'off',
28+
},
2829
}

0 commit comments

Comments
 (0)