module.exports = { env: { browser: true, es6: true, node: true }, extends: [ "eslint:recommended", "plugin:vue/base", "plugin:vue/essential", "plugin:vue/strongly-recommended", "plugin:vue/recommended" ], parserOptions: { ecmaVersion: 10, sourceType: "module" }, plugins: ["vue"], rules: { "vue/valid-v-pre": 0, "vue/valid-v-once": 0, "vue/no-boolean-default": 0, "vue/attributes-order": 0, "vue/attribute-hyphenation": 0, "vue/html-self-close": 0, "vue/html-indent": 0, "vue/max-attributes-per-line": 0, "vue/html-self-closing": 0, "vue/require-default-prop": 0 } };