-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
20 lines (20 loc) · 579 Bytes
/
.eslintrc.js
File metadata and controls
20 lines (20 loc) · 579 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
parser: "vue-eslint-parser",
parserOptions: {
parser: "@typescript-eslint/parser",
ecmaVersion: 2018,
sourceType: "module"
},
extends: [
"plugin:vue/vue3-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"vue/require-default-prop": "off",
"vue/no-v-html": "off",
"vue/multi-word-component-names": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
};