-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
40 lines (40 loc) · 1.1 KB
/
.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
36
37
38
39
40
{
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"extends": ["airbnb-typescript/base", "prettier"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"project": "./tsconfig.eslint.json",
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"import/prefer-default-export": "off",
"no-console": "off",
"no-restricted-syntax": ["error", "ForInStatement", "LabeledStatement", "WithStatement"],
"no-shadow": "off",
"no-underscore-dangle": "off",
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/no-unused-vars": "warn"
},
"settings": {
"import/resolver": {
"alias": [
["@components", "./src/components"],
["@Auth", "./src/components/auth"],
["@Text", "./src/components/text"],
["@User", "./src/components/user"],
["@bin", "./src/bin"],
["@config", "./src/config"],
["@lib", "./src/lib"],
["@middlewares", "./src/middlewares"],
["@utils", "./src/utils"],
["@test", "./src/utils/test"]
]
}
}
}