// Use this file as a starting point for your project's .eslintrc. // Copy this file, and add rule overrides as needed. { "extends": "airbnb", "rules": { "arrow-parens": [1, "as-needed"], "comma-dangle": 0, "indent": [2, 4, { "SwitchCase": 1, "VariableDeclarator": 1, "outerIIFEBody": 1 }], "max-len": [1, 120], "no-bitwise": 0, "no-underscore-dangle": 0, "no-param-reassign": 0, "semi": [2, "never"], "linebreak-style": "off", "no-var": "error", "no-cond-assign": [2, "except-parens"] } }