{ "parser": "babel-eslint", "plugins": [ "react" ], "globals": { "fetch": false }, "ecmaFeatures": { "jsx": true, "modules": true }, "rules": { "strict": 0, "new-cap": 0, "no-shadow": 0, "no-underscore-dangle": 0, "react/prop-types": 0, "react/display-name": 0, "react/wrap-multilines": 1, "react/self-closing-comp": 1, "react/no-did-mount-set-state": 1, "react/no-did-update-set-state": 1, "react/jsx-uses-react": 1, "react/jsx-uses-vars": 1, "react/react-in-jsx-scope": 0, "react/sort-comp": [2, { "order": [ "displayName", "propTypes", "contextTypes", "childContextTypes", "constructor", "mixins", "statics", "defaultProps", "getDefaultProps", "state", "getInitialState", "getChildContext", "componentWillMount", "componentDidMount", "componentWillReceiveProps", "shouldComponentUpdate", "componentWillUpdate", "componentDidUpdate", "componentWillUnmount", "/^on.+$/", "/^get.+$/", "/^_.*$/", "/^render.+$/", "render" ] }], "semi": [2, "always"], "no-empty": 1, "no-func-assign": 1, "no-extra-semi": 1, "no-obj-calls": 1, "consistent-return": 1, "eqeqeq": [2, "smart"], "guard-for-in": 1, "indent": [2, 2], "no-alert": 1, "no-caller": 1, "no-else-return": 1, "no-eq-null": 1, "no-fallthrough": 1, "no-loop-func": 1, "no-new-func": 1, "no-multi-spaces": 1, "no-multi-str": 1, "no-native-reassign": 1, "no-proto": 1, "no-return-assign": 1, "yoda": [2, "never", { "exceptRange": true }], "no-catch-shadow": 1, "no-undef-init": 1, "no-undef": 1, "camelcase": 1, "comma-spacing": [2, {"before": false, "after": true}], "comma-style": [2, "last"], "func-names": 1, "func-style": [2, "declaration"], "linebreak-style": 1, "new-parens": 1, "no-lonely-if": 1, "no-multiple-empty-lines": 1, "no-nested-ternary": 1, "no-new-object": 1, "no-spaced-func": 1, "no-unneeded-ternary": 1, "one-var": [2, "never"], "quotes": [2, "double"], "quote-props": [2, "as-needed"], "semi-spacing": [2, {"before": false, "after": true}], "space-after-keywords": [2, "always"], "space-before-blocks": [2, "always"], "space-before-function-paren": [2, "never"], "space-infix-ops": 1, "space-return-throw-case": 1, "spaced-comment": [2, "always"], "no-var": 1, "object-shorthand": [2, "methods"] }, "env": { "browser": true, "es6": true } }