forked from victorgarciaesgi/nuxt-typed-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
25 lines (25 loc) · 778 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"extends": ["@nuxtjs/eslint-config-typescript", "plugin:vue/vue3-recommended", "prettier"],
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "vue"],
"root": true,
"rules": {
"semi": "off",
"prefer-const": "off",
"no-console": "off",
"import/default": "off",
"import/no-named-as-default-member": "off",
"promise/param-names": "off",
"no-use-before-define": "off",
"vue/multi-word-component-names": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-unused-vars": ["off"],
"@typescript-eslint/consistent-type-imports": "warn",
"import/named": "off"
}
}