2024-03-02 04:29:16 +00:00
|
|
|
/* eslint-env node */
|
2024-03-23 08:23:21 +00:00
|
|
|
require("@rushstack/eslint-patch/modern-module-resolution")
|
2024-03-02 04:29:16 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
root: true,
|
2024-03-23 08:23:21 +00:00
|
|
|
extends: [
|
|
|
|
"plugin:vue/vue3-essential",
|
|
|
|
"eslint:recommended",
|
|
|
|
"@vue/eslint-config-typescript",
|
|
|
|
"@vue/eslint-config-prettier/skip-formatting"
|
2024-03-02 04:29:16 +00:00
|
|
|
],
|
|
|
|
parserOptions: {
|
2024-03-23 08:23:21 +00:00
|
|
|
ecmaVersion: "latest"
|
2024-03-19 12:35:05 +00:00
|
|
|
},
|
|
|
|
rules: {
|
2024-03-23 08:23:21 +00:00
|
|
|
"vue/multi-word-component-names": "off",
|
|
|
|
"vue/valid-v-for": "off",
|
|
|
|
"vue/require-v-for-key": "off"
|
2024-03-02 04:29:16 +00:00
|
|
|
}
|
|
|
|
}
|