UNPKG

803 BPlain TextView Raw
1{
2 "extends": ["airbnb"],
3 "env": { "es6": true, "node": true, "browser": true, "mocha": true },
4 "parser": "babel-eslint",
5 "ecmaVersion": 6,
6 "parserOptions": {
7 "sourceType": "module",
8 "ecmaFeatures": {
9 "jsx": true,
10 "experimentalObjectRestSpread": true,
11 "impliedStrict": true
12 }
13 },
14 "globals": {
15 "Generator": true,
16 "it": false,
17 "describe": false,
18 "beforeEach": false,
19 "afterEach": false
20 },
21 "rules": {
22 "react/sort-comp": 0,
23 "no-console": 0,
24 "max-len": 0,
25 "no-unused-expressions": 0,
26 "react/jsx-filename-extension": 0,
27 "no-confusing-arrow": 0,
28 "react/no-unused-prop-types": 0,
29 "react/forbid-prop-types": 0,
30 "import/prefer-default-export": 0,
31 "react/no-children-prop": 0,
32 "react/no-danger": 2
33 }
34}