{ "extends": "eslint-config-airbnb", "env": { "browser": true, "node": false, "mocha": true, }, "rules": { "jsx-quotes": 2, "comma-dangle": 0, // airbnb turns this on. "indent": [2, 2, {"SwitchCase": 1}], "no-console": 0, "no-alert": 0, "no-param-reassign": 0, "no-shadow": 0, // TODO: Removing those will cause many required changes. "semi": 0, "space-before-function-paren": 0, // For Immutable (i.e: Immutable.List()) "new-cap": 0, // Maybe it's not right to ignore id length but it's too annoying. "id-length": 0 } }