{ "extends": "airbnb", "plugins": [], "env": { "node": true, "browser": true, "mocha": true }, "rules": { "brace-style": [ 2, "1tbs", { "allowSingleLine": true } ], "comma-dangle": [ 2, "never" ], "complexity": [ 2, 6 ], "curly": 2, "eqeqeq": [ 2, "allow-null" ], "max-statements": [ 2, 30 ], "react/react-in-jsx-scope" : 0, "react/jsx-filename-extension" : 0, "arrow-body-style": 0, "consistent-return": 0, "no-shadow-restricted-names": 2, "no-undef": 0, "no-use-before-define": 2, "radix": 2, "semi": 2, "space-infix-ops": 2, "key-spacing": 0, "no-multi-spaces": 0, "import/extensions" : 0, "object-shorthand": [ 2, "consistent" ], "no-param-reassign": 0, "prefer-rest-params": 0, "class-methods-use-this": 0, "strict": 0, "import/no-extraneous-dependencies": "off", "import/no-dynamic-require": "off", "react/require-extension": "off", "import/no-unresolved" : "off" }, "globals": { "AnalysisView": true, "PollingView": true, "Prism": true, "Spinner": true, "Timer": true, "moment": true } }