欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

vue中eslint導(dǎo)致的報錯問題及解決

 更新時間:2023年10月20日 10:13:09   作者:飛得更高肥尾沙鼠  
這篇文章主要介紹了vue中eslint導(dǎo)致的報錯問題及解決方案,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教

報錯信息

[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)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論