Skip to content

hqzh/thursday

Repository files navigation

thursday

现有vue项目引入eslint

按道理应该使用vue-cli自带的集成eslint-plugin-vue,历史原因我们是低版本的vue-cli,所以手动引入;

为什么要引入eslit?

不管是多人合作还是个人项目,代码规范是很重要的。这样做不仅可以很大程度地避免基本语法错误,也保证了代码的可读性。 比如基本的缩进、字段类型、参数函数命名方式(驼峰底杠)等可能都会让其他维护人员抓狂。

引入步骤

  1. 安装依赖:
    npm install eslint eslint-config-airbnb-base eslint-plugin-import eslint-plugin-vue eslint-friendly-formatter eslint-loader babel-eslint  --save-dev
    // npm i -g eslint-plugin-vue
  1. 添加eslit配置文件

在项目根路径添加两个文件 .eslintrc.js 和 .eslintignore

.eslintrc.js:eslint规则配置文件

module.exports = {
    root: true,
    parserOptions: {
        ecmaVersion: 2018,
        parser: 'babel-eslint',
        sourceType: 'module'
    },
    env: {
        browser: true,
        node: true,
        es6: true,
    },
    plugins: [
        "vue"
    ],
    extends: ['plugin:vue/recommended', 'eslint:recommended'], // 最严格模式,会在命令窗口打印错误提示
    // 解决webpack配置eslint使用airbnb-base报import/no-unresolved错误
    settings: {
        'import/resolver': {
          webpack: {
            config: './build/webpack.base.conf.js',
          },
        },
      },
    // extends: ['plugin:vue/essential', 'eslint:recommended'],

    // add your custom rules here
    // it is base on https://github.com/vuejs/eslint-config-vue
    // 官网文档 https://eslint.org/docs/user-guide/getting-started
    // 中文文档 https://cn.eslint.org/docs/rules/
    rules: {
        "vue/max-attributes-per-line": ["error", {
            "singleline": 5,  //设置超过5个属性换行
            "multiline": {
                "max": 1,
                "allowFirstLine": false
            }
        }],
        "vue/name-property-casing": ["error", "PascalCase"],
        'accessor-pairs': 2, // 强制 getter 和 setter 在对象中成对出现
        'arrow-spacing': [2, {
            'before': true,
            'after': true
        }], // 强制箭头函数的箭头前后使用一致的空格
        'block-spacing': [2, 'always'], // 禁止或强制在代码块中开括号前和闭括号后有空格
        'brace-style': [2, '1tbs', {
            'allowSingleLine': true
        }], // 强制在代码块中使用一致的大括号风格
        'camelcase': [0, {
            'properties': 'always'
        }], // 强制使用骆驼拼写法命名约定
        'comma-dangle': [2, 'never'], // 要求或禁止末尾逗号
        'comma-spacing': [2, {
            'before': false,
            'after': true
        }], // 强制在逗号前后使用一致的空格
        'comma-style': [2, 'last'], // 强制使用一致的逗号风格
        'constructor-super': 2, // 要求在构造函数中有 super() 的调用
        'curly': [2, 'multi-line'], // 强制所有控制语句使用一致的括号风格
        'dot-location': [2, 'property'], // 强制在点号之前和之后一致的换行
        'eol-last': 2, // 要求或禁止文件末尾存在空行
        'eqeqeq': [2, 'allow-null'], // 要求使用 === 和 !==
        'generator-star-spacing': [2, {
            'before': true,
            'after': true
        }], // 强制 generator 函数中 * 号周围使用一致的空格
        'handle-callback-err': [2, '^(err|error)$'], // 要求回调函数中有容错处理
        'indent': ['error', 'tab'], // 强制使用一致的缩进
        'no-tabs': 0,  //允许所有使用tab缩进
        'vue/html-indent': ["error", 'tab'],  // 配置template模板使用tab缩进
        'jsx-quotes': [2, 'prefer-single'], // 强制在 JSX 属性中一致地使用双引号或单引号
        'key-spacing': [2, {
            'beforeColon': false,
            'afterColon': true
        }], // 强制在对象字面量的属性中键和值之间使用一致的间距
        'keyword-spacing': [2, {
            'before': true,
            'after': true
        }], // 强制在关键字前后使用一致的空格
        'linebreak-style': ["error", "windows"],
        'new-cap': [2, {
            'newIsCap': true,
            'capIsNew': false
        }], // 要求构造函数首字母大写
        'new-parens': 2, // 要求调用无参构造函数时有圆括号
        'no-array-constructor': 2, // 禁用 Array 构造函数
        'no-caller': 2, // 禁用 arguments.caller 或 arguments.callee
        'no-console': 'off', // 禁用 console
        'no-class-assign': 2, // 禁止修改类声明的变量
        'no-cond-assign': 2, // 禁止条件表达式中出现赋值操作符
        'no-const-assign': 2, // 禁止修改 const 声明的变量
        'no-control-regex': 2, // 禁止在正则表达式中使用控制字符
        'no-delete-var': 2, // 禁止删除变量
        'no-dupe-args': 2, // 禁止 function 定义中出现重名参数
        'no-dupe-class-members': 2, // 禁止类成员中出现重复的名称
        'no-dupe-keys': 2, // 禁止对象字面量中出现重复的 key
        'no-duplicate-case': 2, // 禁止出现重复的 case 标签
        'no-empty-character-class': 2, // 禁止在正则表达式中使用空字符集
        'no-empty-pattern': 2, // 禁止使用空解构模式
        'no-eval': 2, // 禁用 eval()
        'no-ex-assign': 2, // 禁止对 catch 子句的参数重新赋值
        'no-extend-native': 2, // 禁止扩展原生类型
        'no-extra-bind': 2, // 禁止不必要的 .bind() 调用
        'no-extra-boolean-cast': 2, // 禁止不必要的布尔转换
        'no-extra-parens': [2, 'functions'], // 禁止不必要的括号
        'no-fallthrough': 2, // 禁止 case 语句落空
        'no-floating-decimal': 2, // 禁止数字字面量中使用前导和末尾小数点
        'no-func-assign': 2, // 禁止对 function 声明重新赋值
        'no-implied-eval': 2, // 禁止使用类似 eval() 的方法 
        'no-inner-declarations': [2, 'functions'], // 禁止在嵌套的块中出现变量声明或 function 声明
        'no-invalid-regexp': 2, // 禁止 RegExp 构造函数中存在无效的正则表达式字符串
        'no-irregular-whitespace': 2, // 禁止在字符串和注释之外不规则的空白
        'no-iterator': 2, // 禁用 __iterator__ 属性
        'no-label-var': 2, // 不允许标签与变量同名
        'no-labels': [2, {
            'allowLoop': false,
            'allowSwitch': false
        }], // 禁用标签语句
        'no-lone-blocks': 2, // 禁用不必要的嵌套块
        'no-mixed-spaces-and-tabs': 2, // 禁止空格和 tab 的混合缩进
        'no-multi-spaces': 2, // 禁止使用多个空格
        'no-multi-str': 2, // 禁止使用多行字符串
        'no-multiple-empty-lines': [2, {
            'max': 3,
            "maxEOF": 3,
            "maxBOF": 3,
        }], // 禁止出现多行空行(此处设置最多出现连续3个空行)
        'no-global-assign': 2, // 禁止对原生对象或只读的全局对象进行赋值,原no-native-reassign已被此替换
        'no-unsafe-negation': 2, // 禁止对关系运算符的左操作数使用否定操作符,原no-negated-in-lhs已被此替换
        'no-new-object': 2, // 禁用 Object 的构造函数
        'no-new-require': 2, // 禁止调用 require 时使用 new 操作符
        'no-new-symbol': 2, // 禁止 Symbolnew 操作符和 new 一起使用
        'no-new-wrappers': 2, // 禁止对 String,Number 和 Boolean 使用 new 操作符
        'no-obj-calls': 2, // 禁止把全局对象作为函数调用
        'no-octal': 2, // 禁用八进制字面量
        'no-octal-escape': 2, // 禁止在字符串中使用八进制转义序列
        'no-path-concat': 2, // 禁止对 __dirname 和 __filename 进行字符串连接
        'no-proto': 2, // 禁用 __proto__ 属性
        'no-redeclare': 2, // 禁止多次声明同一变量
        'no-regex-spaces': 2, // 
        'no-return-assign': [2, 'except-parens'], // 禁止在 return 语句中使用赋值语句
        'no-self-assign': 2, // 禁止自我赋值
        'no-self-compare': 2, // 禁止自身比较
        'no-sequences': 2, // 禁用逗号操作符
        'no-shadow-restricted-names': 2, // 禁止将标识符定义为受限的名字
        'func-call-spacing': 2, // 要求或禁止在函数标识符和其调用之间有空格,原no-spaced-func已被此替换
        'no-sparse-arrays': 2, // 禁用稀疏数组
        'no-this-before-super': 2, // 禁止在构造函数中,在调用 super() 之前使用 this 或 super
        'no-throw-literal': 2, // 禁止抛出异常字面量
        'no-trailing-spaces': 1, // 禁用行尾空格
        'no-undef': 2, // 禁用未声明的变量,除非它们在 /*global */ 注释中被提到
        'no-undef-init': 2, // 禁止将变量初始化为 undefined
        'no-unexpected-multiline': 2, // 禁止出现令人困惑的多行表达式
        'no-unmodified-loop-condition': 2, // 禁用一成不变的循环条件
        'no-unneeded-ternary': [2, {
            'defaultAssignment': false
        }], // 禁止可以在有更简单的可替代的表达式时使用三元操作符
        'no-unreachable': 2, // 禁止在return、throw、continue 和 break 语句之后出现不可达代码
        'no-unsafe-finally': 2, // 禁止在 finally 语句块中出现控制流语句
        'no-unused-vars': [2, {
            'vars': 'all',
            'args': 'none'
        }], // 禁止出现未使用过的变量
        'no-useless-call': 2, // 禁止不必要的 .call() 和 .apply()
        'no-useless-computed-key': 2, // 禁止在对象中使用不必要的计算属性
        'no-useless-constructor': 2, // 禁用不必要的构造函数
        'no-useless-escape': 0, // 禁用不必要的转义字符
        'no-whitespace-before-property': 2, // 禁止属性前有空白
        'no-with': 2, // 禁用 with 语句
        'one-var': [2, {
            'initialized': 'never'
        }], // 强制函数中的变量要么一起声明要么分开声明
        'operator-linebreak': [2, 'after', {
            'overrides': {
                '?': 'before',
                ':': 'before'
            }
        }], // 强制操作符使用一致的换行符
        'padded-blocks': [0, 'never'], // 要求或禁止块内填充
        'quotes': [2, 'single', {
            'avoidEscape': true,
            'allowTemplateLiterals': true
        }], // 强制使用一致的反勾号、双引号或单引号
        // 'semi': [2, 'never'], // 要求或禁止使用分号代替 ASI,分号设置:never 从不出现分号,always 必须分号结尾
        'semi': [0],
        'semi-spacing': [2, {
            'before': false,
            'after': true
        }], // 强制分号之前和之后使用一致的空格
        'space-before-blocks': [2, 'always'], // 强制在块之前使用一致的空格
        'space-before-function-paren': [2, 'never'], // 强制在 function的左括号之前使用一致的空格
        'space-in-parens': [2, 'never'], // 强制在圆括号内使用一致的空格
        'space-infix-ops': 2, // 要求操作符周围有空格
        'space-unary-ops': [2, {
            'words': true,
            'nonwords': false
        }], // 强制在一元操作符前后使用一致的空格
        'spaced-comment': [2, 'always', {
            'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
        }], // 强制在注释中 // 或 /* 使用一致的空格
        'template-curly-spacing': [2, 'never'], // 要求或禁止模板字符串中的嵌入表达式周围空格的使用
        'use-isnan': 2, // 要求使用 isNaN() 检查 NaN
        'valid-typeof': 2, // 强制 typeof 表达式与有效的字符串进行比较
        'wrap-iife': [2, 'any'], // 要求 IIFE 使用括号括起来
        'yield-star-spacing': [2, 'both'], // 强制在 yield* 表达式中 * 周围使用空格
        'yoda': [2, 'never'], // 要求或禁止 “Yoda” 条件
        'prefer-const': 2, // 要求使用 const 声明那些声明后不再被修改的变量
        'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, // 禁用 debugger
        'object-curly-spacing': [2, 'always', {
            objectsInObjects: false
        }], // 强制在大括号中使用一致的空格
        'array-bracket-spacing': [2, 'never'], // 强制数组方括号中使用一致的空格
        "no-underscore-dangle": ["error", { "allow": ["__VUE_DEVTOOLS_GLOBAL_HOOK__"] }],  // 允许指定标识符使用悬空下划线
        "max-len": ["error", { "code": 160 }],  //每行支持长度
        "prefer-destructuring": ["error", {"object": true, "array": false}] //强制对象解构,不强制数组解构:
    },
    globals: {  // 设置全局变量忽略eslint检测
        _: true,
        moment: true,
        MessageBox:true,
        Message:true,
        GlobalConfig:true,
        Loading:true,
    }
}

.eslintignore:对特定目录(文件)忽略eslint检测的配置文件(按自己需求来)

build/*.js
config/*.js
src/assets
  1. webpack配置

webpack.base.conf.js 可以通过配置 eslint-loader 让你有不符合eslint的时候在命令行或者界面里提示你有什么错误。(可以不配置)

build\webpack.base.conf.js:

const createLintingRule = () => ({
  test: /\.(js|vue)$/,
  loader: 'eslint-loader',
  enforce: 'pre',
  include: [resolve('src'), resolve('test')],
  options: {
    formatter: require('eslint-friendly-formatter'),
    emitWarning: !config.dev.showEslintErrorsInOverlay
  }
})
module.exports = {
  entry: {
  },
  output: {
  },
  resolve: {
  },
  externals: {
  },
  module: {
    rules: [
      ...(config.dev.useEslint ? [createLintingRule()] : [])
    ],
    loaders: [
    ]
  },
  plugins: [
  ]
}

showEslintErrorsInOverlay 这个变量可以控制错误提示是否需要在浏览器界面中提示。

config\index.js:

module.exports = {
  dev: {
    // Use Eslint Loader?
    // If true, your code will be linted during bundling and
    // linting errors and warnings will be shown in the console.
    useEslint: true,
    // If true, eslint errors and warnings will also be shown in the error overlay
    // in the browser.
    showEslintErrorsInOverlay: false,
  },
  build: {
  }
}
  1. 检测或修复

因为是后期加入的eslint,对于现有代码,一点点手动修复是很麻烦的一件事,在 package.js 中配置以下命令并执行,可以按照你配置的规则批量修改代码

"scripts": {
    //  运行npm run lint 可以查看到所有不符合规范的代码
    // 运行 npm run lint --fix,可以快速修复所有不符合规范的代码
    "lint": "eslint --ext .js,.vue src/api/index.js",
    // 上面的命令中 --ext 参数就是用来指定需要检查的扩展名的文件(.js和.vue),src 就是指定检查的目录(可以是单个文件,也可以是整个目录)
    // 也可以这样写,直接修复.js .vue 文件,src目录下的所有
    "lint": "eslint --ext .js,.vue src --fix"
},
  1. 辅助的开发工具配置

VSCode安装完成Vetur、EditorConfig(帮助开发人员在不同编辑器之间定义和维护一致的编码格式)、 prettier(代码格式化工具) 和 ESLint 后,文件 > 首选项 > 设置 打开 VSCode 配置文件,添加如下配置

{
  "eslint.enable": false, // 是否开启检测
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    // "vue-html",
    // "html",
    // "vue",
    {
      "language": "vue-html",
      "autoFix": false // 编辑vue-html,保存时是否根据eslint规则自动修复
    },
    {
      "language": "html",
      "autoFix": false
    },
    {
      "language": "vue",
      "autoFix": false
    }
  ],
  "eslint.run": "onSave",
  "eslint.autoFixOnSave": false, // 保存时是否根据eslint规则自动修复
  "editor.formatOnSave": true, // 保存自动格式化(可选,如果不喜欢工具自动格式化,可以用手动使用快捷键格式化之后再手动保存)
  "[javascript]": {
    "editor.formatOnSave": false
  },  // 排除js文件的自动格式化(避免与eslint自动修复冲突)(与上一配置配合使用)
  // markdownlint配置(可选)
  "markdownlint.config": {
    "MD029": false // fix this: https://github.com/DavidAnson/markdownlint/issues/45
  },
  "prettier.singleQuote": true, // js中使用单引号(必选)
  "prettier.disableLanguages": [ // [实践中有遇到组件属性值过长会换行,解决这个问题](https://juejin.im/post/5bfcdee25188251d9e0c40f2)
        "vue"
    ],
   "vetur.format.defaultFormatterOptions": {
        "prettyhtml": {
            "printWidth": 160
        }
    },
}

如果不行,试试这个

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

推荐一些vscode插件

  1. 在根目录下增加.editorconfig文件,写入以下内容(说明
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true

[*]

# Change these settings to your own preference
indent_style = space
indent_size = 4

# We recommend you to keep these unchanged
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

end

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published