{ "parserOptions": { "ecmaVersion": 6, "sourceType": "script", "ecmaFeatures": { "jsx": true } }, "plugins": [ "mocha" ], "extends": "eslint-config-node-services", "root": true, "rules": { "indent": ["error", 2], "prefer-arrow-callback": ["error", { "allowNamedFunctions": true }], "comma-dangle": 0, "array-callback-return": 0, "consistent-return": 0, "import/newline-after-import": 0, "no-prototype-builtins": 0, "no-mixed-operators": 0, "arrow-body-style": 0, "import/no-extraneous-dependencies": 0, "max-len": ["warn", 120], "no-plusplus": 0, "no-unused-vars": "warn", "no-param-reassign": "warn", "class-methods-use-this": 0, "prefer-template": 0, "no-restricted-syntax": 0, "func-names": 0, "mocha/no-exclusive-tests": "error" } }