UNPKG

452 BPlain TextView Raw
1{
2 "extends": "airbnb/legacy",
3 "env": {
4 "mocha": true,
5 "node": true
6 },
7 "rules": {
8 "no-unused-expressions": 0,
9 "no-param-reassign": 0,
10 "no-empty": 0,
11 "no-shadow": 0,
12 "id-length": 0,
13 "valid-jsdoc": 2,
14 "func-names": 0,
15 "no-console": 0,
16
17 // Disable until Flow supports let and const
18 "no-var": 0,
19 "vars-on-top": 0,
20
21 // Disable comma-dangle unless need to support it
22 "comma-dangle": 0
23 }
24}