{ "env": { "browser": false, "node": true, "mocha": true, "es2020": true }, "extends": [ "airbnb-base", "eslint:recommended", "plugin:mocha/recommended", "plugin:node/recommended" ], "parserOptions": { "ecmaVersion": 2020, "sourceType": "module" }, "plugins": [ "node", "mocha", "chai-expect" ], "root": true, "rules": { "no-console": "off", "no-param-reassign": "off", "nonblock-statement-body-position": [ "error", "any" ], "curly": ["error", "multi-or-nest"], "no-underscore-dangle": "off", "mocha/no-exclusive-tests": "error", "mocha/no-mocha-arrows": "off", "import/extensions": ["error","always"], "semi": [2,"never"] } }