-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
50 lines (50 loc) · 1.76 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
45
46
47
48
49
50
{
"extends": [
"eslint:recommended",
"airbnb-base",
"airbnb-typescript/base",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:import/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"project": ["./tsconfig.json"]
},
"rules": {
"no-console": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"import/named": "off",
"@typescript-eslint/no-explicit-any": "off",
"class-methods-use-this": "off",
"@typescript-eslint/unbound-method": "off",
"@typescript-eslint/naming-convention": "off",
"max-classes-per-file": "off",
"consistent-return": "off",
"func-names": "off",
"import/no-unresolved": "off",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-unsafe-return": "off",
"import/no-import-module-exports": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"import/no-cycle": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/lines-between-class-members": "off",
"@typescript-eslint/no-unnecessary-type-assertion": "off"
},
"ignorePatterns": ["node_modules/", "build", "**/*.js", "ormconfig.ts", "tests/"]
}