UNPKG

680 BPlain TextView Raw
1{
2 "parser": "babel-eslint",
3 "extends": "airbnb-base",
4 "env": {
5 "node": true,
6 "es6": true
7 },
8 "rules": {
9 "max-len": 0,
10 "semi": [2, "never"],
11 "comma-dangle" : 0,
12 "arrow-parens": 0,
13 "no-useless-escape": 0,
14 "consistent-return": 0,
15 "arrow-body-style": 0,
16 "no-underscore-dangle": 0,
17 "no-plusplus": 0,
18 "no-console": [1, {"allow": ["warn", "error"]}],
19 "no-unused-vars": [2, { "vars": "all", "args": "none" }],
20 "no-use-before-define": 0,
21 "import/newline-after-import": 0,
22 "import/extensions": 0,
23 "import/no-unresolved": 0,
24 "global-require": 0,
25 "no-unused-expressions": 0,
26 "object-shorthand": 0
27 }
28}