UNPKG

650 BPlain TextView Raw
1{
2 "env": {
3 "node": true,
4 "es6": true,
5 "mocha": true
6 },
7 "ecmaFeatures": {
8 "modules": true,
9 "experimentalObjectRestSpread": true
10
11 },
12 "rules": {
13 "indent": [2, 2],
14 "brace-style": [2, "1tbs"],
15 "quotes": [2, "single", { "allowTemplateLiterals": true }],
16 "no-console": 0,
17 "no-shadow": 0,
18 "no-use-before-define": [2, "nofunc"],
19 "no-underscore-dangle": 0,
20 "no-constant-condition": 0,
21 "space-after-function-name": 0,
22 "no-undef": 2,
23 "camelcase": 0 },
24 "extends": "eslint:recommended",
25 "parserOptions": {
26 "ecmaVersion": 6,
27 "sourceType": "module"
28 }
29}