UNPKG

952 BPlain TextView Raw
1{
2 "extends": "airbnb",
3 "env": {
4 "browser": true,
5 "node": true,
6 "mocha": true
7 },
8 "parserOptions": {
9 "ecmaVersion": 6,
10 "sourceType": "module",
11 "ecmaFeatures": {
12 "forOf": true,
13 "jsx": true,
14 "es6": true,
15 "experimentalObjectRestSpread" : true
16 }
17 },
18 "rules": {
19 "comma-dangle": 0,
20 "indent": 0,
21 "react/prop-types": 0,
22 "react/jsx-indent-props" : 0,
23 "linebreak-style": 0,
24 "react/jsx-closing-bracket-location" : 0,
25 "object-curly-spacing" : 0,
26 "arrow-body-style": 0,
27 "no-console": 0,
28 "max-len": 0,
29 "prefer-template": 0,
30 "import/no-unresolved": 0,
31 "global-require": 0,
32 "no-underscore-dangle": 0
33 },
34 "plugins": [
35 "react"
36 ],
37 "globals": {
38 "__DEVSERVER__": true,
39 "__DEVCLIENT__": true
40 }
41}