forked from NexusMutual/smart-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
33 lines (33 loc) · 787 Bytes
/
.eslintrc
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
{
"env": {
"commonjs": true,
"es6": true,
"node": true,
"mocha": true
},
"extends": [
"semistandard",
"eslint:recommended",
"plugin:prettier/recommended"
],
"plugins": ["mocha"],
"globals" : {
"artifacts": true,
"assert": true,
"contract": true
},
"ignorePatterns": ["node_modules/", "artifacts", "coverage", "!.solcover.js"],
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"comma-dangle": ["warn", "always-multiline"],
"curly": ["error", "all"],
"max-len": ["error", { "code": 120 }],
"mocha/no-async-describe": "error",
"mocha/no-exclusive-tests": "error",
"no-nested-ternary": "error",
"no-unused-vars": ["warn", { "varsIgnorePattern": "^_unused" }],
"padded-blocks": "off"
}
}