-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
22 lines (22 loc) · 859 Bytes
/
.eslintrc.json
File metadata and controls
22 lines (22 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "standard-with-typescript",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-redeclare": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/space-before-function-paren": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/method-signature-style": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-misused-promises":"off",
"no-multiple-empty-lines": "off",
"no-return-assign": "off"
}
}