module.exports = { "extends": "airbnb-base", "plugins": [ "import" ], "rules": { "prefer-destructuring": ["off"], "no-continue": ["off"], "max-len": ["error", 1000, 2, { ignoreUrls: true, ignoreComments: false, ignoreRegExpLiterals: true, ignoreStrings: true, ignoreTemplateLiterals: true, }], }, "globals": { "window": true } };