-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
54 lines (54 loc) · 1.32 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
{
"env": {
"es6": true,
"node": true,
"jest": true
},
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"globals": {
"Atomic": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": 2019,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"import/no-extraneous-dependencies": "off",
"prettier/prettier": "error",
"class-methods-use-this": "off",
"import/no-named-as-default-member": "off",
"import/no-named-as-default": "off",
"import/prefer-default-export": "off",
"no-restricted-syntax": "off",
"max-classes-per-file": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-types": "off",
"no-useless-constructor": "off",
"camelcase": "off",
"no-shadow": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"ts": "never"
}
],
"@typescript-eslint/no-namespace": "off",
"no-console": "off",
"no-use-before-define": "off",
"no-buffer-constructor": "off"
},
"settings": {
"import/resolver": {
"typescript": {}
}
}
}