1234567891011121314151617181920212223242526272829303132 |
- module.exports = {
- root: true,
- env: {
- node: true,
- },
- extends: [
- "plugin:vue/essential",
- "eslint:recommended",
- "plugin:prettier/recommended",
- ],
- parserOptions: {
- parser: "@babel/eslint-parser",
- },
- rules: {
- "no-console": "off",
- "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
- "vue/multi-word-component-names": "off",
- "vue/no-mutating-props": "off",
- "no-unused-vars": [
- "error",
- { vars: "all", args: "none", ignoreRestSiblings: false },
- ],
- "vue/no-parsing-error": [2, { "x-invalid-end-tag": false }],
- "vue/no-use-v-if-with-v-for": [
- "error",
- {
- allowUsingIterationVar: true,
- },
- ],
- },
- ignorePatterns: ["public/"],
- };
|