Student User
2019-08-08 7be4a5f7fc140d1495e739d8a02107879f2b9647
commit | author | age
f3b017 1 {
RS 2   "extends": "airbnb-base",
3   "parserOptions": {
4     "sourceType": "script",
5   },
6   "rules": {
7     "strict": 0,
8     "no-param-reassign": [
9       "error",
10       { "props": false }
11     ],
12     "func-names": 0,
13     "comma-dangle": 0,
14     "prefer-template": 0,
15     "camelcase": 0,
16     "no-underscore-dangle": 0,
17     "consistent-return": 0,
18     "no-bitwise": ["error", { "allow": ["~"] }]
19   },
20   "globals": {
21     "describe": true,
22     "it": true,
23     "after": true,
24     "afterEach": true,
25     "before": true,
26     "beforeEach": true,
27     "should": true,
28     "reqServer": true
29   },
30   "env": {
31     "node": true,
32     "mocha": true
33   }
34 }