UNPKG

1.06 kBPlain TextView Raw
1{
2 "env": {
3 "browser": true,
4 "node": true,
5 "mocha": true
6 },
7 "parser": "babel-eslint",
8 "extends": [
9 "eslint-config-airbnb"
10 ],
11 "globals": {
12 "chai": true,
13 "XMLLite": true
14 },
15 "rules": {
16 "comma-dangle": 0,
17 "consistent-return": 0,
18 "func-names": 0,
19 "global-require": 0,
20 "import/no-extraneous-dependencies": 0,
21 "import/no-unresolved": 0,
22 "indent": 0,
23 "key-spacing": 0,
24 "linebreak-style": 0,
25 "new-cap": 0,
26 "no-cond-assign": 0,
27 "no-empty": 0,
28 "no-fallthrough": 0,
29 "no-loop-func": 0,
30 "no-mixed-operators": 0,
31 "no-new": 0,
32 "no-param-reassign": 0,
33 "no-restricted-syntax": 0,
34 "no-return-assign": 0,
35 "no-underscore-dangle": 0,
36 "object-curly-spacing": 0,
37 "prefer-rest-params": 0,
38 "react/jsx-filename-extension": 0,
39 "react/jsx-space-before-closing": 0,
40 "strict": 0,
41 "max-len": [
42 2,
43 120,
44 4,
45 {
46 "ignoreUrls": true
47 }
48 ],
49 "id-length": [
50 2,
51 {
52 "min": 1
53 }
54 ]
55 }
56}