UNPKG

580 BPlain TextView Raw
1{
2 "extends": [
3 "eslint:recommended",
4 "google",
5 "plugin:react/recommended"
6 ],
7 "parserOptions": {
8 "ecmaFeatures": {
9 "jsx": true
10 },
11 "ecmaVersion": 6,
12 "sourceType": "module"
13 },
14 "plugins": [
15 "react"
16 ],
17 "rules": {
18 "arrow-parens": 0,
19 "indent": ["error", 4, {"SwitchCase": 1}],
20 "linebreak-style": 0,
21 "max-len": ["error", 120],
22 "no-mixed-requires": 1,
23 "no-useless-constructor": 0,
24 "object-curly-spacing": 0,
25 "one-var": 0,
26 "padded-blocks": 0,
27 "react/prop-types": 0
28 }
29}
\No newline at end of file