module.exports = { "root": true, "env": { "node": true }, "extends": [ "plugin:vue/essential" ], "parser": "vue-eslint-parser", "parserOptions": { "parser": "@typescript-eslint/parser", "ecmaVersion": 2020, "sourceType": "module" }, "rules": { "@typescript-eslint/ban-ts-ignore": "off", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/no-empty-function": "off", "vue/custom-event-name-casing": "off", "no-use-before-define": "off", "@typescript-eslint/no-use-before-define": "off", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/ban-types": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-unused-vars": "off", "vue/multi-word-component-names": [ "error", { "ignores": [ "index" ] } ], "no-console": "warn", "no-debugger": "warn", "prettier/prettier": [ "error", { "tabWidth": 2, "singleQuote": true, "semi": false, "endOfLine": "auto" } ] } }