diff --git a/.eslintrc b/.eslintrc index edc7430eec..9ae4c93237 100644 --- a/.eslintrc +++ b/.eslintrc @@ -15,8 +15,6 @@ "rules": { "constructor-super": 2, "comma-dangle": 0, - "comma-spacing": 2, - "comma-style": [2, "last"], "func-names": 0, "guard-for-in": 0, "one-var": [2, { "initialized": "never" }], @@ -26,32 +24,17 @@ "no-else-return": 0, "no-param-reassign": 0, "no-this-before-super": 2, - "no-underscore-dangle": 0, "no-undef": 2, "no-unused-vars": [2, { "vars": "all", "args": "none" }], - "no-var": 2, "babel/object-shorthand": 2, - "quotes": [2, "single", "avoid-escape"], - "react/display-name": 0, "react/jsx-boolean-value": [2, "never"], "react/jsx-no-duplicate-props": 2, - "react/jsx-no-undef": 2, - "react/jsx-uses-react": 2, - "react/no-did-mount-set-state": 2, - "react/no-did-update-set-state": 2, - "react/no-multi-comp": 2, "react/prop-types": [2, { "ignore": [ "children", "className", "style" ] }], - "react/react-in-jsx-scope": 2, - "react/self-closing-comp": 2, "react/sort-comp": 0, - "react/wrap-multilines": 2, - "react/jsx-uses-vars": 2, "space-after-keywords": 0, "space-before-blocks": 0, "space-before-function-paren": 0, - "space-infix-ops": 2, "spaced-comment": 0, - "strict": [2, "never"], "vars-on-top": 0 } }