-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc.json
83 lines (83 loc) · 2.67 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.eslint.json",
"extraFileExtensions": [".json"]
},
"plugins": [
"@typescript-eslint",
"jest",
"prettier",
"simple-import-sort",
"unused-imports",
"eslint-plugin-tsdoc"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:@typescript-eslint/recommended",
"plugin:import/errors",
"plugin:import/typescript",
"plugin:import/warnings",
"plugin:jest/recommended",
"plugin:prettier/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/no-non-null-asserted-optional-chain": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"import/default": "error",
"import/export": "warn",
"import/exports-last": "warn",
"import/extensions": "error",
"import/first": "error",
"import/group-exports": "off",
"import/namespace": "error",
"import/no-absolute-path": "error",
"import/no-anonymous-default-export": "error",
"import/no-cycle": "warn",
"import/no-deprecated": "error",
"import/no-duplicates": "error",
"import/no-dynamic-require": "off",
"import/no-extraneous-dependencies": "error",
"import/no-mutable-exports": "error",
"import/no-namespace": "warn",
"import/no-restricted-paths": "error",
"import/no-self-import": "error",
"import/no-unresolved": "warn",
"import/no-unused-modules": "error",
"import/no-useless-path-segments": "error",
"import/no-webpack-loader-syntax": "error",
"import/order": "error",
"jest/no-conditional-expect": "off",
"no-async-promise-executor": "off",
"no-prototype-builtins": "off",
"prefer-const": [
"error",
{
"destructuring": "all"
}
],
"prettier/prettier": "error",
"tsdoc/syntax": "off",
"unused-imports/no-unused-imports-ts": "warn"
}
}