UNPKG

654 BPlain TextView Raw
1{
2 "extends": "airbnb-base",
3 "env": {
4 "node": true
5 },
6 "parserOptions": {
7 "ecmaVersion": 8,
8 "sourceType": "script",
9 "ecmaFeatures": {
10 "modules": false
11 }
12 },
13 "rules": {
14 "max-len": 0,
15 "linebreak-style": 0,
16 "no-plusplus": [
17 2,
18 {
19 "allowForLoopAfterthoughts": true
20 }
21 ],
22 "no-continue": 0,
23 "indent": [
24 2,
25 "tab"
26 ],
27 "no-tabs": 0,
28 "strict": [
29 2,
30 "safe"
31 ],
32 "curly": [
33 2,
34 "multi",
35 "consistent"
36 ],
37 "import/no-extraneous-dependencies": 0,
38 "import/no-unresolved": 0,
39 "no-underscore-dangle": 0,
40 "no-param-reassign": 0,
41 "generator-star-spacing": 0,
42 "jsx-a11y/href-no-hash": "off"
43 }
44}