-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
55 lines (54 loc) · 1.65 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
const DOMGlobals = ["window", "document"];
const NodeGlobals = ["module", "require"];
module.exports = {
parser: "@typescript-eslint/parser",
// plugin:prettier/recommended ===
// "extends": ["prettier"] +
// "plugins": ["prettier"] + "rules": { "prettier/prettier": "error"}
extends: ["plugin:prettier/recommended"],
env: {
browser: true,
es6: true,
jest: true
},
parserOptions: {
sourceType: "module"
},
plugins: ["jest"],
rules: {
"prettier/prettier": "error",
"no-debugger": "error",
"no-unused-vars": [
"error",
// 捕获未使用的变量,但不捕获参数
{ varsIgnorePattern: ".*", args: "none" }
],
// most of the codebase are expected to be env agnostic
"no-restricted-globals": ["error", ...NodeGlobals],
// since we target ES2015 for baseline support, we need to forbid object
// rest spread usage in destructure as it compiles into a verbose helper.
// TS now compiles assignment spread into Object.assign() calls so that
// is allowed.
"no-restricted-syntax": ["error", "ObjectPattern > RestElement", "AwaitExpression"]
},
overrides: [
// tests, no restrictions (runs in Node / jest with jsdom)
{
files: ["**/__tests__/**"],
rules: {
"no-restricted-globals": "off",
"no-restricted-syntax": "off",
"jest/no-disabled-tests": "error",
"jest/no-focused-tests": "error"
}
},
// node
{
files: ["scripts/**", ".eslintrc.js", "rollup.config.js", "packages/*/index.js"],
rules: {
"no-restricted-globals": ["error", ...DOMGlobals],
"no-restricted-syntax": "off"
}
}
]
};