vue中eslint導致的報錯問題及解決
報錯信息
[plugin:vite-plugin-eslint] C:\git_project\xxxxxxxxx\src\views\station\info\InfoForm.vue
54:29 error Delete `?` prettier/prettier? 1 problem (1 error, 0 warnings)
1 error and 0 warnings potentially fixable with the `--fix` option.
解決方案
修改.eslintrc.js文件

// @ts-check
const { defineConfig } = require('eslint-define-config')
module.exports = defineConfig({
root: true,
env: {
browser: true,
node: true,
es6: true
},
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 2020,
sourceType: 'module',
jsxPragma: 'React',
ecmaFeatures: {
jsx: true
}
},
extends: [
'plugin:vue/vue3-recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
'plugin:prettier/recommended',
'./.eslintrc-auto-import.json'
],
rules: {
'prettier/prettier': 'off',
"no-irregular-whitespace": "off",
'vue/script-setup-uses-vars': 'error',
'vue/no-reserved-component-names': 'off',
.......
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-unused-vars': 'off',
// 'no-unused-vars': 'error',
"no-unused-vars": 'off',
'space-before-function-paren': 'off',
.......
'vue/multi-word-component-names': 'off'
}
})
總結(jié)
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
- Vue3配置路由ERROR in [eslint]報錯問題及解決
- vue?eslint報錯error?"Component?name?"*****"?should?always?be?multi-word"解決
- vue?eslint報錯:Component?name?“xxxxx“?should?always?be?multi-word.eslintvue的4種解決方案
- vue-cli創(chuàng)建項目時由esLint校驗導致報錯或警告的問題及解決
- vue關(guān)于eslint空格縮進等的報錯問題及解決
- vue?cli2?和?cli3去掉eslint檢查器報錯的解決
- vue項目下,如何用命令直接修復ESLint報錯
相關(guān)文章
vue template當中style背景設(shè)置不編譯問題
這篇文章主要介紹了vue template當中style背景設(shè)置不編譯問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-04-04
使用vue3-print-nb實現(xiàn)打印pdf分頁代碼示例
這篇文章主要介紹了使用vue3-print-nb實現(xiàn)打印pdf分頁的相關(guān)資料,這種方法不僅適用于Vue3項目,也可以在其他前端框架中實現(xiàn)類似的打印分頁功能,需要的朋友可以參考下2024-10-10
VUE 無限層級樹形數(shù)據(jù)結(jié)構(gòu)顯示的實現(xiàn)
在做項目中,會遇到一些樹形的數(shù)據(jù)結(jié)構(gòu),常用在左側(cè)菜單導航,本文就介紹一下如何實現(xiàn),感興趣的可以了解一下2021-07-07
Vue超出文本框顯示省略號鼠標滑入顯示全部的實現(xiàn)方法
在Vue項目中經(jīng)常需要處理文本內(nèi)容過長的情況,這篇文章主要給大家介紹了關(guān)于Vue超出文本框顯示省略號鼠標滑入顯示全部的實現(xiàn)方法,文中通過代碼介紹的非常詳細,需要的朋友可以參考下2023-10-10

