-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
35 lines (35 loc) · 876 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module.exports = {
"parserOptions": {
"ecmaVersion": 2020
},
"extends": [
"eslint:recommended",
"prettier",
"plugin:import/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "import"],
"rules": {
"capitalized-comments": "off",
"camelcase": "off",
"curly": ["error", "all"],
"id-length": "off",
"max-lines-per-function": "off",
"max-statements": "off",
"multiline-comment-style": "off",
"no-bitwise": "off",
"no-magic-numbers": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"node/no-unsupported-features/es-syntax": "off",
"one-var": "off",
"padded-blocks": "off"
},
"settings": {
"import/resolver": {
"typescript": {},
}
}
}