UNPKG

402 BJSONView Raw
1{
2 "extends": "airbnb-base",
3 "env": {
4 "browser": true,
5 "node": true,
6 "jest": true
7 },
8 "rules": {
9 "object-curly-newline": "off",
10 "no-new": [0],
11 "no-unused-vars": "off",
12 "no-shadow": "off",
13 "no-continue": "off",
14 "max-len": [2, {
15 "code": 600
16 }]
17 },
18 "globals": {
19 "Web3": false
20 }
21}