module.exports = { "env": { "mocha": true, "browser": true, "node": true, "es6": true }, "extends": "eslint:recommended", "parserOptions": { "ecmaVersion": 2018 }, "rules": { "no-useless-escape": "off", "no-unsafe-finally": "warn", "no-unused-vars": "off", "no-console": "off", "no-mixed-spaces-and-tabs": "warn", "no-async-promise-executor": "warn", "indent": [ "off", 2 ], "linebreak-style": [ "error", "unix" ], "semi": [ "error", "always" ], "func-style": [ "error", "declaration", { "allowArrowFunctions": true } ], 'no-console': ["error", { allow: ["warn", "error", "log"] }] }, "globals": { "step": true, "xstep": true, } };