"use strict"; module.exports = { "rules": { "brace-style": "off", "comma-spacing": "off", "consistent-return": "off", "eol-last": "off", "func-call-spacing": "off", "key-spacing": "off", "keyword-spacing": "off", "no-else-return": "off", "no-extra-semi": "off", "no-irregular-whitespace": "off", "no-lone-blocks": "off", "no-lonely-if": "off", "no-multi-spaces": "off", "no-redeclare": "off", "no-self-assign": "off", "no-shadow": "off", "no-trailing-spaces": "off", "no-undef": "off", "no-unsafe-negation": "off", "no-unused-vars": "off", "no-useless-return": "off", "object-shorthand": "off", "quotes": "off", "space-before-function-paren": "off", "space-infix-ops": "off", "spaced-comment": "off", } };