-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
35 lines (35 loc) · 859 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
{
"parser": "@typescript-eslint/parser",
"extends": ["airbnb-base", "airbnb-typescript/base", "plugin:prettier/recommended"],
"env": {
"es6": true,
"node": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module",
"project": "tsconfig.json"
},
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"indent": "off",
"@typescript-eslint/indent": "off",
"operator-linebreak": "off",
"@typescript-eslint/no-explicit-any": "error",
"import/prefer-default-export": "off",
"prettier/prettier": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"import/no-extraneous-dependencies": "off",
"no-underscore-dangle": "off"
}
}