{ // "extends": "airbnb-base", "rules": { "indent": ["error", 4], "no-underscore-dangle": ["off", { "allow": "*" }], "import/no-webpack-loader-syntax": "off", "comma-dangle": ["error", "never"], "no-unused-vars": ["warn", { "vars": "all", "args": "after-used", "ignoreRestSiblings": true }], "no-useless-escape": "off", "no-confusing-arrow": "off", "max-len": ["error", { "code": 120, "ignoreRegExpLiterals": true }], "no-param-reassign": ["error", { "props": true, "ignorePropertyModificationsFor": ["domElement", "icField"] }], "object-curly-newline": ["error", { "ObjectExpression": { "minProperties": 4, "consistent": true }, "ObjectPattern": { "minProperties": 5, "consistent": true } }], "spaced-comment": ["error", "always", { "markers": ["--"] }] }, "parserOptions": { "sourceType": "module", "ecmaVersion": 6, "ecmaFeatures": { "experimentalObjectRestSpread": true } }, "env": { "browser": true, "node": true, "es6": true, "jquery": true } }