-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
65 lines (65 loc) · 1.64 KB
/
.eslintrc.js
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
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
sourceType: "module",
},
extends: ["airbnb-base", "prettier", "plugin:@typescript-eslint/recommended"],
env: {
es6: true,
node: true,
browser: true,
},
globals: {
DEBUG: true,
},
plugins: ["@typescript-eslint", "json", "prettier"],
rules: {
"@typescript-eslint/ban-ts-comment": "off",
"no-plusplus": "off",
"no-bitwise": "off",
"prefer-rest-params": "off",
"prettier/prettier": ["error"],
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"no-unused-expressions": ["error", { allowShortCircuit: true }],
"import/extensions": [
"error",
"ignorePackages",
{
js: "never",
ts: "never",
},
],
"max-len": [
"warn",
{
code: 140,
tabWidth: 2,
comments: 1000,
ignoreComments: true,
ignoreTrailingComments: true,
ignoreUrls: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true,
},
],
},
overrides: [
{
// enable the rule specifically for TypeScript files
files: ["*.js", "*.jsx"],
rules: {
"@typescript-eslint/explicit-function-return-type": "off",
},
},
],
settings: {
"import/resolver": {
typescript: {
alwaysTryTypes: true, // always try to resolve types under `<root>@types` directory even it doesn't contain any source code, like `@types/unist`
project: ["./tsconfig.json"],
},
},
},
};