-
Notifications
You must be signed in to change notification settings - Fork 23
/
.eslintrc
35 lines (35 loc) · 958 Bytes
/
.eslintrc
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
{
"plugins": ["prettier"],
"extends": ["airbnb", "plugin:@typescript-eslint/recommended", "prettier"],
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"],
"moduleDirectory": ["node_modules", "."]
}
}
},
"rules": {
"prettier/prettier": [0, {
"singleQuote": true,
"semi": false,
"tabWidth": 2
}],
"no-bitwise": [0],
"no-plusplus": [0],
"no-loop-func": [0],
"no-param-reassign": [0],
"import/extensions": [0],
"no-await-in-loop": [0],
"lines-between-class-members": [0],
"camelcase": [1],
"@typescript-eslint/no-explicit-any": [0],
"no-console": [0],
"semi": [2, "never"],
"quotes": [0, "single"],
"import/prefer-default-export": [0],
"react/jsx-filename-extension": ["warn", {
"extensions": [".ts", ".tsx"]
}]
}
}