• Vue Eslint检查报错Expected indentation of 8 spaces but found


    Vscode 开发Vue Eslint检查报错“Expected indentation of 8 spaces but found...”

     解决方法:修改eslint配置文件.eslintrc.js

     .eslintrc.js

    // https://eslint.org/docs/user-guide/configuring
    
    module.exports = {
      root: true,
      parser: 'vue-eslint-parser',
      parserOptions: {
        parser: 'babel-eslint',
        sourceType: 'module',
      },
      env: {
        browser: true,
        node: true,
        es6: true,
      },
      extends: 'eslint:recommended',
      // required to lint *.vue files
      plugins: ['vue'],
      globals: {
        document: true,
        window: true,
      },
      // add your custom rules here
      rules: {
        //0--不启用; 1--出现问题会有警告; 2--出现问题会报错
        indent: [
          2,
          2,
          {
            SwitchCase: 1, // (默认:0)指定 switch-case 语句的缩进级别
          },
        ], // 强制使用一致的缩进
        // eqeqeq: [2, 'always'], // 要求使用 === 和 !==
        eqeqeq: ['off'], // 关闭要求使用 === he !==
        semi: [2, 'never'], // 要求或禁止使用分号代替 ASI
        quotes: [2, 'single'], // 强制使用一致的反勾号、双引号或单引号
        'no-console': 'off',
        camelcase: 2, //强制驼峰法命名
        // allow debugger during development
        'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
      },
    }
  • 相关阅读:
    pod
    jquery日历插件
    web前端常用api
    VUE.JS——脚手架安装
    github入门到上传本地项目
    appach修改默认端口之后数据库的访问
    在脚本中刷新impala元信息
    在脚本中刷新impala元信息
    不同hadoop集群之间迁移hive数据
    不同hadoop集群之间迁移hive数据
  • 原文地址:https://www.cnblogs.com/myflowers/p/15419870.html
Copyright © 2020-2023  润新知