-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
70 lines (70 loc) · 1.45 KB
/
.eslintrc.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts"]
},
"import/resolver": {
"typescript": {}
}
},
"plugins": ["@typescript-eslint", "prettier"],
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base",
"plugin:prettier/recommended",
"airbnb",
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"requireConfigFile": false,
"ecmaVersion": "latest",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"rules": {
"linebreak-style": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"no-use-before-define": "off",
"no-bitwise": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"no-confusing-arrow": "off",
"implicit-arrow-linebreak": "off",
"indent": "off",
"function-paren-newline": "off",
"operator-linebreak": "off",
"nonblock-statement-body-position": "off",
"padded-blocks": "off",
"quotes": "off",
"object-curly-newline": "off",
"lines-between-class-members": "off",
"import/no-extraneous-dependencies": "off",
"no-shadow": [
"error",
{ "builtinGlobals": false, "hoist": "functions", "allow": [], "ignoreOnInitialization": false }
],
"no-new": "off",
"prettier/prettier": [
"warn",
{
"singleQuote": true,
"semi": true
}
]
}
}