-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
30 lines (30 loc) · 1.05 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
{
"env": {
"es2021": true,
"node": true
},
"extends": "standard-with-typescript",
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": ["**/tsconfig.json"]
},
"plugins": ["@typescript-eslint"],
"ignorePatterns": ["**/build/*", "**/node_modules/*", "**/public/*", "**/tsconfig.json", "**/jest.config.js"],
"rules": {
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/semi": ["off"],
"semi": ["error", "always"],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/member-delimiter-style": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"no-return-assign": "off",
"array-callback-return": "off",
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/no-confusing-void-expression": "off"
}
}