{ "extends": "airbnb-base", "rules": { "no-console": [ "error", { "allow": [ "info", "warn", "error" ] } ], "class-methods-use-this": "off", "no-underscore-dangle": ["off", { "allow": [], "allowAfterThis": false, "allowAfterSuper": false, "enforceInMethodNames": false }], "max-len": [ "error", 150, 2, { "ignoreUrls": true, "ignoreComments": false, "ignoreRegExpLiterals": true, "ignoreStrings": true, "ignoreTemplateLiterals": true } ], "no-shadow": "off", "no-param-reassign": "off", "no-nested-ternary": "off", "prefer-const": [ "error", { "destructuring": "any", "ignoreReadBeforeAssign": false } ] } }