{ "globals": {}, "env": { "browser": true, "commonjs": true, "es6": true, "node": true, "jquery": true, "es2020": true }, "parserOptions": { "ecmaVersion": 2020 }, "plugins": [ ], "extends": [ "eslint:recommended", "plugin:import/errors", "plugin:import/warnings", "plugin:node/recommended", "plugin:promise/recommended", "plugin:json/recommended-with-comments", "airbnb-base" ], "ignorePatterns": [ "dist", "assets", "media", "models", "node_modules" ], "rules": { "max-len": [1, 275, 3], "camelcase": "off", "guard-for-in": "off", "prefer-template":"off", "import/extensions": "off", "func-names": "off", "no-await-in-loop": "off", "no-bitwise": "off", "no-case-declarations":"off", "no-continue": "off", "no-loop-func": "off", "no-mixed-operators": "off", "no-param-reassign":"off", "no-plusplus": "off", "dot-notation": "off", "no-restricted-globals": "off", "no-restricted-syntax": "off", "no-underscore-dangle": "off", "no-return-assign": "off", "newline-per-chained-call": "off", "node/no-unsupported-features/es-syntax": "off", "node/shebang": "off", "object-curly-newline": "off", "prefer-destructuring": "off", "promise/always-return": "off", "promise/catch-or-return": "off", "promise/no-nesting": "off", "no-async-promise-executor": "off", "import/no-absolute-path": "off", "import/no-extraneous-dependencies": "off", "node/no-unpublished-import": "off", "node/no-unpublished-require": "off", "no-regex-spaces": "off", "radix": "off" } }