| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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,
- }
- };
|