.eslintrc.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. module.exports = {
  2. root: true,
  3. globals: {
  4. defineEmits: 'readonly',
  5. defineProps: 'readonly',
  6. ElMessage: 'readonly',
  7. ElMessageBox: 'readonly'
  8. },
  9. extends: ['plugin:@typescript-eslint/recommended', 'plugin:vue/vue3-recommended', 'airbnb-base'],
  10. parserOptions: {
  11. parser: '@typescript-eslint/parser',
  12. ecmaVersion: 2020
  13. },
  14. rules: {
  15. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', // 禁用 debugger
  16. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', // 禁用 console
  17. 'no-bitwise': 'off', // 禁用按位运算符
  18. 'no-tabs': 'off', // 禁用 tab
  19. 'array-element-newline': ['error', 'consistent'], // 强制数组元素间出现换行
  20. indent: ['error', 2, { MemberExpression: 0, SwitchCase: 1, ignoredNodes: ['TemplateLiteral'] }], // 强制使用一致的缩进
  21. quotes: ['error', 'single'], // 强制使用一致的反勾号、双引号或单引号
  22. 'comma-dangle': ['error', 'always-multiline'], // 要求或禁止末尾逗号
  23. 'object-curly-spacing': ['error', 'always'], // 强制在大括号中使用一致的空格
  24. 'max-len': ['error', 120], // 强制一行的最大长度
  25. 'no-new': 'off', // 禁止使用 new 以避免产生副作用
  26. 'linebreak-style': 'off', // 强制使用一致的换行风格
  27. 'import/extensions': 'off', // 确保在导入路径中统一使用文件扩展名
  28. 'eol-last': 'off', // 要求或禁止文件末尾存在空行
  29. 'no-shadow': 'off', // 禁止变量声明与外层作用域的变量同名
  30. 'no-unused-vars': 'warn', // 禁止出现未使用过的变量
  31. 'import/no-cycle': 'off', // 禁止一个模块导入一个有依赖路径的模块回到自己身上
  32. 'arrow-parens': 'off', // 要求箭头函数的参数使用圆括号
  33. semi: ['error', 'never'], // 要求或禁止使用分号代替 ASI
  34. eqeqeq: 'on', // 要求使用 === 和 !==
  35. 'no-param-reassign': 'off', // 禁止对 function 的参数进行重新赋值
  36. 'import/prefer-default-export': 'off', // 如果模块只输入一个名字,则倾向于默认输出
  37. 'no-use-before-define': 'on', // 禁止在变量定义之前使用它们,则倾向于默认输出
  38. 'no-continue': 'off', // 禁用 continue 语句
  39. 'prefer-destructuring': 'off', // 优先使用数组和对象解构
  40. 'no-plusplus': 'off', // 禁用一元操作符 ++ 和 --
  41. 'prefer-const': 'warn', // 要求使用 const 声明那些声明后不再被修改的变量
  42. 'global-require': 'off', // 要求 require() 出现在顶层模块作用域中
  43. 'no-prototype-builtins': 'off', // 禁止直接调用 Object.prototypes 的内置属性
  44. 'consistent-return': 'off', // 要求 return 语句要么总是指定返回的值,要么不指定
  45. 'one-var-declaration-per-line': 'off', // 要求或禁止在变量声明周围换行
  46. 'one-var': 'off', // 强制函数中的变量要么一起声明要么分开声明
  47. 'import/named': 'off', // 确保命名导入与远程文件中的命名导出相对应
  48. 'object-curly-newline': 'off', // 强制大括号内换行符的一致性
  49. 'default-case': 'off', // 要求 switch 语句中有 default 分支
  50. 'no-trailing-spaces': 'on', // 禁用行尾空格
  51. 'func-names': 'off', // 要求或禁止使用命名的 function 表达式
  52. radix: 'off', // 强制在 parseInt() 使用基数参数
  53. 'no-unused-expressions': 'off', // 禁止出现未使用过的表达式
  54. 'no-underscore-dangle': 'off', // 禁止标识符中有悬空下划线
  55. 'no-nested-ternary': 'off', // 禁用嵌套的三元表达式
  56. 'no-restricted-syntax': 'off', // 禁用特定的语法
  57. 'no-await-in-loop': 'off', // 禁止在循环中出现 await
  58. 'import/no-extraneous-dependencies': 'off', // 禁止使用外部包
  59. 'import/no-unresolved': 'off', // 确保导入指向一个可以解析的文件/模块
  60. 'template-curly-spacing': ['error', 'always'], // 要求或禁止模板字符串中的嵌入表达式周围空格的使用
  61. '@typescript-eslint/no-var-requires': 'on', // 除import语句外,禁止使用require语句
  62. '@typescript-eslint/no-empty-function': 'off', // 不允许空函数
  63. '@typescript-eslint/no-explicit-any': 'off', // 禁止使用 any 类型
  64. 'guard-for-in': 'off', // 要求 for-in 循环中有一个 if 语句
  65. 'class-methods-use-this': 'off', // 强制类方法使用 this
  66. 'vue/html-indent': ['error', 2], // 在<template>中强制一致缩进
  67. 'vue/html-self-closing': 'off', // 执行自闭合的风格
  68. 'vue/max-attributes-per-line': [
  69. // 强制每行属性的最大数量
  70. 'warn',
  71. {
  72. singleline: {
  73. max: 5,
  74. allowFirstLine: true
  75. },
  76. multiline: {
  77. max: 1,
  78. allowFirstLine: false
  79. }
  80. }
  81. ],
  82. 'vue/singleline-html-element-content-newline': 'off' // 要求单行元素的内容前后有一个换行符
  83. }
  84. }