当前位置:   article > 正文

针对使用eslint,阻止报错的一些常见注解_eslint页面不报错

eslint页面不报错

 前提:在写项目时,eslint 会报一些不必要的错误影响项目的运行

在 ESLint 的规则配置中,数字表示规则的严重程度,规则的严重程度有三个级别:

  • 0 或者 “off”:关闭规则,不进行检查。
  • 1 或者 “warn”:打开规则,并将其视为一个警告(不会导致程序退出)。
  • 2 或者 “error”:打开规则,并将其视为一个错误(会导致程序退出)

配置 eslint 的规则需要在 .eslintrc.js 文件的 rules 配置项中进行

  1. // 这段代码是一个针对 Vue.js 的 ESLint 规则配置,该规则是用来限制每行中最大的属性数量
  2. "vue/max-attributes-per-line": [2, {
  3. "singleline": 10, // 表示单行元素最大属性数量为10
  4. "multiline": { // 表示多行元素的属性数量限制。
  5. "max": 1, // 表示多行元素最大可容许的属性数量为1
  6. "allowFirstLine": false // 表示是否允许多行元素的第一行存在属性
  7. }
  8. }]
  9. // 将组件的名称属性(name)的命名规范设置为 PascalCase(大驼峰命名法)
  10. "vue/name-property-casing": ["error", "PascalCase"]
  11. semi: ['error', 'never'], // 不要求使用分号
  12. 'comma-dangle': ['error', 'never'], // 不要求在对象字面量中的最后一个属性后加上逗号
  13. 'vuejs-accessibility/mouse-events-have-key-events': 'off' // 鼠标和键盘事件必须要一起使用
  14. 'jsx-a11y/click-events-have-key-events': 'off' // 给非交互元素添加点击事件
  15. 'linebreak-style': ['error', 'windows'] // 声明这是windows操作系统
  16. 'vue/comment-directive': 'off' // 关闭注释指令的规则,即不检查注释中的指令是否正确
  17. 'vuejs-accessibility/form-control-has-label': 'off' // 不检查表单控件是否有对应的标签
  18. 'vue/multi-word-component-names': 'off' // 不检查组件名称是否符合多词命名规范

 以上大概是会遇到的一些 eslint 不必要的校验,此方式是在配置 eslint 时的不成熟的做法,下面给大家一个关于 eslint 的一个比较全面的校验规则,在下面如果没有包含到上述的规则,可以将上述的规则添加到下述规则中

  1. rules: {
  2. "vue/max-attributes-per-line": [2, {
  3. "singleline": 10,
  4. "multiline": {
  5. "max": 1,
  6. "allowFirstLine": false
  7. }
  8. }],
  9. "vue/singleline-html-element-content-newline": "off",
  10. "vue/multiline-html-element-content-newline":"off",
  11. "vue/name-property-casing": ["error", "PascalCase"],
  12. "vue/no-v-html": "off",
  13. 'accessor-pairs': 2,
  14. 'arrow-spacing': [2, {
  15. 'before': true,
  16. 'after': true
  17. }],
  18. 'block-spacing': [2, 'always'],
  19. 'brace-style': [2, '1tbs', {
  20. 'allowSingleLine': true
  21. }],
  22. 'camelcase': [0, {
  23. 'properties': 'always'
  24. }],
  25. 'comma-dangle': [2, 'never'],
  26. 'comma-spacing': [2, {
  27. 'before': false,
  28. 'after': true
  29. }],
  30. 'comma-style': [2, 'last'],
  31. 'constructor-super': 2,
  32. 'curly': [2, 'multi-line'],
  33. 'dot-location': [2, 'property'],
  34. 'eol-last': 2,
  35. 'eqeqeq': ["error", "always", {"null": "ignore"}],
  36. 'generator-star-spacing': [2, {
  37. 'before': true,
  38. 'after': true
  39. }],
  40. 'handle-callback-err': [2, '^(err|error)$'],
  41. 'indent': [2, 2, {
  42. 'SwitchCase': 1
  43. }],
  44. 'jsx-quotes': [2, 'prefer-single'],
  45. 'key-spacing': [2, {
  46. 'beforeColon': false,
  47. 'afterColon': true
  48. }],
  49. 'keyword-spacing': [2, {
  50. 'before': true,
  51. 'after': true
  52. }],
  53. 'new-cap': [2, {
  54. 'newIsCap': true,
  55. 'capIsNew': false
  56. }],
  57. 'new-parens': 2,
  58. 'no-array-constructor': 2,
  59. 'no-caller': 2,
  60. 'no-console': 'off',
  61. 'no-class-assign': 2,
  62. 'no-cond-assign': 2,
  63. 'no-const-assign': 2,
  64. 'no-control-regex': 0,
  65. 'no-delete-var': 2,
  66. 'no-dupe-args': 2,
  67. 'no-dupe-class-members': 2,
  68. 'no-dupe-keys': 2,
  69. 'no-duplicate-case': 2,
  70. 'no-empty-character-class': 2,
  71. 'no-empty-pattern': 2,
  72. 'no-eval': 2,
  73. 'no-ex-assign': 2,
  74. 'no-extend-native': 2,
  75. 'no-extra-bind': 2,
  76. 'no-extra-boolean-cast': 2,
  77. 'no-extra-parens': [2, 'functions'],
  78. 'no-fallthrough': 2,
  79. 'no-floating-decimal': 2,
  80. 'no-func-assign': 2,
  81. 'no-implied-eval': 2,
  82. 'no-inner-declarations': [2, 'functions'],
  83. 'no-invalid-regexp': 2,
  84. 'no-irregular-whitespace': 2,
  85. 'no-iterator': 2,
  86. 'no-label-var': 2,
  87. 'no-labels': [2, {
  88. 'allowLoop': false,
  89. 'allowSwitch': false
  90. }],
  91. 'no-lone-blocks': 2,
  92. 'no-mixed-spaces-and-tabs': 2,
  93. 'no-multi-spaces': 2,
  94. 'no-multi-str': 2,
  95. 'no-multiple-empty-lines': [2, {
  96. 'max': 1
  97. }],
  98. 'no-native-reassign': 2,
  99. 'no-negated-in-lhs': 2,
  100. 'no-new-object': 2,
  101. 'no-new-require': 2,
  102. 'no-new-symbol': 2,
  103. 'no-new-wrappers': 2,
  104. 'no-obj-calls': 2,
  105. 'no-octal': 2,
  106. 'no-octal-escape': 2,
  107. 'no-path-concat': 2,
  108. 'no-proto': 2,
  109. 'no-redeclare': 2,
  110. 'no-regex-spaces': 2,
  111. 'no-return-assign': [2, 'except-parens'],
  112. 'no-self-assign': 2,
  113. 'no-self-compare': 2,
  114. 'no-sequences': 2,
  115. 'no-shadow-restricted-names': 2,
  116. 'no-spaced-func': 2,
  117. 'no-sparse-arrays': 2,
  118. 'no-this-before-super': 2,
  119. 'no-throw-literal': 2,
  120. 'no-trailing-spaces': 2,
  121. 'no-undef': 2,
  122. 'no-undef-init': 2,
  123. 'no-unexpected-multiline': 2,
  124. 'no-unmodified-loop-condition': 2,
  125. 'no-unneeded-ternary': [2, {
  126. 'defaultAssignment': false
  127. }],
  128. 'no-unreachable': 2,
  129. 'no-unsafe-finally': 2,
  130. 'no-unused-vars': [2, {
  131. 'vars': 'all',
  132. 'args': 'none'
  133. }],
  134. 'no-useless-call': 2,
  135. 'no-useless-computed-key': 2,
  136. 'no-useless-constructor': 2,
  137. 'no-useless-escape': 0,
  138. 'no-whitespace-before-property': 2,
  139. 'no-with': 2,
  140. 'one-var': [2, {
  141. 'initialized': 'never'
  142. }],
  143. 'operator-linebreak': [2, 'after', {
  144. 'overrides': {
  145. '?': 'before',
  146. ':': 'before'
  147. }
  148. }],
  149. 'padded-blocks': [2, 'never'],
  150. 'quotes': [2, 'single', {
  151. 'avoidEscape': true,
  152. 'allowTemplateLiterals': true
  153. }],
  154. 'semi': [2, 'never'],
  155. 'semi-spacing': [2, {
  156. 'before': false,
  157. 'after': true
  158. }],
  159. 'space-before-blocks': [2, 'always'],
  160. 'space-before-function-paren': [2, 'never'],
  161. 'space-in-parens': [2, 'never'],
  162. 'space-infix-ops': 2,
  163. 'space-unary-ops': [2, {
  164. 'words': true,
  165. 'nonwords': false
  166. }],
  167. 'spaced-comment': [2, 'always', {
  168. 'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
  169. }],
  170. 'template-curly-spacing': [2, 'never'],
  171. 'use-isnan': 2,
  172. 'valid-typeof': 2,
  173. 'wrap-iife': [2, 'any'],
  174. 'yield-star-spacing': [2, 'both'],
  175. 'yoda': [2, 'never'],
  176. 'prefer-const': 2,
  177. 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
  178. 'object-curly-spacing': [2, 'always', {
  179. objectsInObjects: false
  180. }],
  181. 'array-bracket-spacing': [2, 'never']
  182. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/1009923
推荐阅读
相关标签
  

闽ICP备14008679号