1234567891011121314151617181920212223242526272829303132333435363738 |
- require("@rushstack/eslint-patch/modern-module-resolution")
- module.exports = {
- root: true,
- extends: ["plugin:vue/vue3-essential", "eslint:recommended", "@vue/eslint-config-typescript", "plugin:prettier/recommended"],
- parserOptions: {
- ecmaVersion: "latest"
- },
- rules: {
- "prettier/prettier": "error",
- "no-debugger": process.env.NODE_ENV == "production" ? 2 : 1,
- "no-unreachable": process.env.NODE_ENV == "production" ? 2 : 1,
- "no-undef": "off",
- "vue/no-v-html": "off",
- "no-irregular-whitespace": "off",
- "vue/html-self-closing": [
- "error",
- {
- html: {
- void: "always",
- normal: "never",
- component: "always"
- },
- svg: "always",
- math: "always"
- }
- ],
- "vue/multi-word-component-names": "off",
- quotes: ["error", "double"],
-
- "@typescript-eslint/no-empty-function": "off",
- "@typescript-eslint/explicit-module-boundary-types": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/no-non-null-assertion": "off",
- "@typescript-eslint/no-this-alias": "off"
- }
- }
|