一个关于eslint的问题

发布于 2022-09-11 18:36:09 字数 1345 浏览 12 评论 0

有没有胖友遇到过
vscode不提示eslint 的问题
时好时坏
1 .eslintrc.js 配好了

module.exports = {
  root: true,
  parserOptions: {
    parser: 'babel-eslint',
    sourceType: 'module'
  },
  env: {
    'browser': true
  },
  globals: {
    $: true,
    Vue: true,
    Vuex: true,
    VueRouter: true,
    hiidoEvent: true
  },
  extends: [
    'airbnb-base',
    'plugin:vue/essential'
  ],
  plugins: [
    'vue'
  ],
  settings: {
    "html/html-extensions": [".html", ".vue"],  // consider .html and .we files as HTML
  },
  rules: {
    'no-debugger': 2,
    'no-console': 1,
    'func-names': 0,
    'import/no-unresolved': 0,
    'import/extensions': 0,
    "import/prefer-default-export": 0,
    'import/no-extraneous-dependencies': 0,
    'import/first': 0,
    'linebreak-style': 0,
    'no-param-reassign': [2, { 'props': false }],
    'comma-dangle': [2, 'never'],
    'quote-props': ["error", "consistent"],
    "indent": ["error", 4],
    "prefer-const": 0,
    "global-require": 0,
    "require-await": "error"
  }
};

2 vscode 的配置

   "eslint.options": {},
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        {
           "language": "vue",
           "autoFix": true
        }, {
           "language": "html",
           "autoFix": true
        }
   ],

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文