-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
44 lines (44 loc) · 1.22 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
41
42
43
44
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"airbnb/base",
"airbnb-typescript/base"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"project": ["tsconfig.json"]
},
"plugins": ["@typescript-eslint"],
"rules": {
"newline-before-return":"error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/dot-notation":"off",
"import/prefer-default-export":"off",
"max-len":"off",
"no-console":"off",
"import/no-dynamic-require":"off",
"global-require":"off",
"no-useless-escape":"off",
"class-methods-use-this":"off",
"max-classes-per-file":"off",
"import/no-extraneous-dependencies":"off",
"no-param-reassign":"off",
"@typescript-eslint/indent":"off",
"@typescript-eslint/comma-dangle":"off",
"spaced-comment":"error",
"implicit-arrow-linebreak":"off",
"arrow-parens":"off",
"nonblock-statement-body-position":"off",
"curly":"off",
"linebreak-style":"off"
}
}