|
| 1 | +{ |
| 2 | + "parser": "babel-eslint", |
| 3 | + "env": { |
| 4 | + "browser": true, |
| 5 | + "node": true |
| 6 | + }, |
| 7 | + "ecmaFeatures": { |
| 8 | + "arrowFunctions": true, |
| 9 | + "blockBindings": true, |
| 10 | + "classes": true, |
| 11 | + "defaultParams": true, |
| 12 | + "destructuring": true, |
| 13 | + "forOf": true, |
| 14 | + "modules": true, |
| 15 | + "objectLiteralComputedProperties": true, |
| 16 | + "objectLiteralShorthandMethods": true, |
| 17 | + "objectLiteralShorthandProperties": true, |
| 18 | + "spread": true, |
| 19 | + "superInFunctions": true, |
| 20 | + "templateStrings": true, |
| 21 | + "unicodeCodePointEscapes": true, |
| 22 | + "jsx": true |
| 23 | + }, |
| 24 | + "rules": { |
| 25 | + "strict": 0, |
| 26 | + "curly": 0, |
| 27 | + "quotes": [2, "single"], |
| 28 | + "no-underscore-dangle": 0, |
| 29 | + "camelcase": [2, {"properties": "never"}], |
| 30 | + "new-cap": 0, |
| 31 | + "react/jsx-boolean-value": 2, |
| 32 | + "react/jsx-quotes": 2, |
| 33 | + "react/jsx-no-undef": 2, |
| 34 | + "react/jsx-sort-props": 0, |
| 35 | + "react/jsx-sort-prop-types": 0, |
| 36 | + "react/jsx-uses-react": 2, |
| 37 | + "react/jsx-uses-vars": 2, |
| 38 | + "react/no-did-mount-set-state": 2, |
| 39 | + "react/no-did-update-set-state": 2, |
| 40 | + "react/no-multi-comp": 2, |
| 41 | + "react/no-unknown-property": 1, |
| 42 | + "react/prop-types": 1, |
| 43 | + "react/react-in-jsx-scope": 2, |
| 44 | + "react/self-closing-comp": 2, |
| 45 | + "react/wrap-multilines": 0 |
| 46 | + }, |
| 47 | + "globals": { |
| 48 | + "inject": false, |
| 49 | + "module": false, |
| 50 | + "describe": false, |
| 51 | + "it": false, |
| 52 | + "before": false, |
| 53 | + "beforeEach": false, |
| 54 | + "after": false, |
| 55 | + "afterEach": false, |
| 56 | + "expect": false, |
| 57 | + "window": false, |
| 58 | + "document": false |
| 59 | + }, |
| 60 | + "plugins": [ |
| 61 | + "react" |
| 62 | + ] |
| 63 | +} |
0 commit comments