-
Notifications
You must be signed in to change notification settings - Fork 2
/
eslint.config.js
66 lines (66 loc) · 1.51 KB
/
eslint.config.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
66
module.exports = [{
ignores: ["dist/**/*.js", "typechain/**/*.js", "index.js"], // generated files
languageOptions: {
sourceType: "commonjs",
},
"rules": {
...require("@eslint/js").configs.recommended.rules,
"indent": [
"error",
4,
{
"SwitchCase": 1,
"flatTernaryExpressions": true
},
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"warn",
"never"
],
"no-console": "error",
"keyword-spacing": "error",
"func-call-spacing": "error",
"space-infix-ops": "error",
"space-before-blocks": "error",
"no-unexpected-multiline": "error"
}
}, {
files: ["test/**/*.js"],
languageOptions: {
globals: { // mocha
describe: "readonly",
it: "readonly",
before: "readonly",
beforeEach: "readonly",
after: "readonly",
afterEach: "readonly",
},
},
rules: {
"no-console": "warn",
},
}, {
files: ["scripts/**/*.js", "hardhat.config.js"],
languageOptions: {
globals: {
process: "readonly",
console: "readonly",
}
},
rules: {
"no-console": "off",
},
}, {
files: ["*.js"],
rules: {
"semi": "off", // autogenerated files
},
}]