diff options
Diffstat (limited to '.eslintrc.cjs')
-rw-r--r-- | .eslintrc.cjs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.eslintrc.cjs b/.eslintrc.cjs new file mode 100644 index 0000000..ee347c0 --- /dev/null +++ b/.eslintrc.cjs | |||
@@ -0,0 +1,17 @@ | |||
1 | /* eslint-env node */ | ||
2 | require("@rushstack/eslint-patch/modern-module-resolution"); | ||
3 | |||
4 | module.exports = { | ||
5 | root: true, | ||
6 | extends: [ | ||
7 | "plugin:vue/vue3-essential", | ||
8 | "eslint:recommended", | ||
9 | "@vue/eslint-config-prettier", | ||
10 | ], | ||
11 | env: { | ||
12 | "vue/setup-compiler-macros": true, | ||
13 | }, | ||
14 | rules: { | ||
15 | "vue/multi-word-component-names": "off", | ||
16 | }, | ||
17 | }; | ||