当前位置:   article > 正文

vue3项目 - Eslint 配置代码风格(保存格式化)_vue3 eslint

vue3 eslint

 一配置文件

1.1 .eslintrc.cjs

  1. // @ts-check
  2. const { defineConfig } = require('eslint-define-config')
  3. module.exports = defineConfig({
  4. root: true,
  5. env: {
  6. browser: true,
  7. node: true,
  8. es6: true
  9. },
  10. parser: 'vue-eslint-parser',
  11. parserOptions: {
  12. parser: '@typescript-eslint/parser',
  13. ecmaVersion: 2020,
  14. sourceType: 'module',
  15. jsxPragma: 'React',
  16. ecmaFeatures: {
  17. jsx: true
  18. }
  19. },
  20. extends: [
  21. 'plugin:vue/vue3-recommended',
  22. 'plugin:@typescript-eslint/recommended',
  23. 'prettier',
  24. 'plugin:prettier/recommended'
  25. ],
  26. rules: {
  27. 'vue/no-setup-props-destructure': 'off',
  28. 'vue/script-setup-uses-vars': 'error',
  29. 'vue/no-reserved-component-names': 'off',
  30. '@typescript-eslint/ban-ts-ignore': 'off',
  31. '@typescript-eslint/explicit-function-return-type': 'off',
  32. '@typescript-eslint/no-explicit-any': 'off',
  33. '@typescript-eslint/no-var-requires': 'off',
  34. '@typescript-eslint/no-empty-function': 'off',
  35. 'vue/custom-event-name-casing': 'off',
  36. 'no-use-before-define': 'off',
  37. '@typescript-eslint/no-use-before-define': 'off',
  38. '@typescript-eslint/ban-ts-comment': 'off',
  39. '@typescript-eslint/ban-types': 'off',
  40. '@typescript-eslint/no-non-null-assertion': 'off',
  41. '@typescript-eslint/explicit-module-boundary-types': 'off',
  42. '@typescript-eslint/no-unused-vars': 'off',
  43. 'no-unused-vars': 'off',
  44. 'space-before-function-paren': 'off',
  45. 'vue/attributes-order': 'off',
  46. 'vue/one-component-per-file': 'off',
  47. 'vue/html-closing-bracket-newline': 'off',
  48. 'vue/max-attributes-per-line': 'off',
  49. 'vue/multiline-html-element-content-newline': 'off',
  50. 'vue/singleline-html-element-content-newline': 'off',
  51. 'vue/attribute-hyphenation': 'off',
  52. 'vue/require-default-prop': 'off',
  53. 'vue/require-explicit-emits': 'off',
  54. 'vue/html-self-closing': [
  55. 'error',
  56. {
  57. html: {
  58. void: 'always',
  59. normal: 'never',
  60. component: 'always'
  61. },
  62. svg: 'always',
  63. math: 'always'
  64. }
  65. ],
  66. 'vue/multi-word-component-names': 'off',
  67. 'vue/no-v-html': 'off',
  68. 'vue/require-toggle-inside-transition': 'off'
  69. }
  70. })

1.2 prettier.config.js

  1. export default {
  2. printWidth: 100, // 一行最多多少字符
  3. tabWidth: 2, // 缩进的宽度,2 个空格
  4. useTabs: false, // 是否使用制表符,不使用制表符,使用空格
  5. semi: false, // 语句结尾是否使用分号
  6. bracketSpacing: true, // 大括号 {} 中开始和结束是否要空格,true — { foo: 1 },false — {foo: 1}
  7. trailingComma: 'none', // 数组或对象或参数的最后一项是否尾随逗号,none — 没有尾随逗号,all — 尽可能使用尾随逗号,es5 — 在 ES5 中有效的尾随逗号(对象、数组等),TypeScript 和 Flow 类型参数中的尾随逗号。
  8. arrowParens: 'always', // 只有一个参数的箭头函数是否带括号,always — 始终带括号,avoid — 不带括号
  9. proseWrap: 'always', // 什么对代码进行折行,always — 如果超过 printWidth 指定的一行最多字符宽度,则进行折行;never — 将每块代码块展开成一行;preserve — 什么都不做,保持原样。
  10. htmlWhitespaceSensitivity: 'strict', // 根据显示样式决定 html 要不要折行
  11. endOfLine: 'auto', // 每行的结束符(回车符、换行符),取值请参考 https://www.prettier.cn/docs/options.html#end-of-line
  12. // 每个文件格式化的范围是文件的全部内容
  13. rangeStart: 0,
  14. rangeEnd: Infinity,
  15. // 不需要写文件开头的@prettier
  16. requirePragma: false,
  17. // 不需要自动在文件开头插入@prettier
  18. insertPragma: false,
  19. }

1.3 本地setting

  1. {
  2. "workbench.colorTheme": "Visual Studio Dark",
  3. "editor.accessibilitySupport": "off",
  4. "git.autofetch": true,
  5. "editor.tabSize": 2,
  6. "security.workspace.trust.untrustedFiles": "open",
  7. "gitlens.views.branches.branches.layout": "list",
  8. "editor.fontSize": 15,
  9. "GitCommitPlugin.ShowEmoji": false,
  10. "workbench.editorAssociations": {
  11. "git-rebase-todo": "gitlens.rebase"
  12. },
  13. "[javascript]": {
  14. "editor.defaultFormatter": "vscode.typescript-language-features"
  15. },
  16. "liveServer.settings.donotShowInfoMsg": true,
  17. "explorer.confirmDelete": false,
  18. "window.zoomLevel": 1,
  19. "breadcrumbs.enabled": false,
  20. "editor.stickyScroll.enabled": false,
  21. "cSpell.userWords": [
  22. "consola",
  23. "iconify",
  24. "persistedstate",
  25. "pinia",
  26. "popconfirm",
  27. "unplugin",
  28. "vite"
  29. ],
  30. "[vue]": {
  31. "editor.defaultFormatter": "esbenp.prettier-vscode"
  32. },
  33. "eslint.enable": true,
  34. "eslint.run": "onType",
  35. "eslint.options": {
  36. "extensions": [
  37. ".js",
  38. ".ts",
  39. ".vue",
  40. ".jsx",
  41. ".tsx"
  42. ]
  43. },
  44. "eslint.codeActionsOnSave.rules": null,
  45. }

1.4他自动保存关闭了,需要手动格式化

方式一:

方式二:

在代码上局部 格式化

======================

二  修改

总结:
Prettier  (代码规范的插件,格式化 )---> 美观

Eslint  (规范、纠错、检验错误 )-----> 纠错

首先,禁用 Prettier 插件,安装 ESLint 插件,配置保存时自动修复

配置代码风格文件 .eslintrc.cjs(Prettier 配置 + ESLint 配置,附配置代码)

配置内容 如,

Prettier:单引号、无分号、每行宽度限制 80字符、不加对象/数组最后逗号、换行符号不限制(win mac不一样)
ESLint:vue组件名称多单词组成(忽略 index.vue)、props解构关闭、未定义变量错误提示
流程:
 

流程:

配置文件 .eslintrc.cjs 文件

  1. rules: {
  2. // 前置
  3. // 1. 禁用格式化插件 prettier format on save 关闭
  4. // 2. 安装Eslint插件,并配置保存时自动修复
  5. // prettier 专注于美观度
  6. 'prettier/prettier': [
  7. 'warn',
  8. {
  9. singleQuote: true, // 单引号
  10. semi: false, // 无分号
  11. printWidth: 80, // 每行宽度至多80字符
  12. trailingComma: 'none', // 不加对象|数组最后逗号
  13. endOfLine: 'auto' // 换行符号不限制(win mac 不一致)
  14. }
  15. ],
  16. // ESLint专注于规范,不符合规范 则报错
  17. 'vue/multi-word-component-names': [
  18. 'warn',
  19. {
  20. ignores: ['index'] // vue组件名称多单词组成(忽略index.vue / index.vue除外)
  21. }
  22. ],
  23. 'vue/no-setup-props-destructure': ['off'], // 关闭 props 解构的校验(props解构丢失响应式)
  24. // 添加未定义变量错误提示,create-vue@3.6.3 关闭,这里加上是为了支持下一个章节演示
  25. 'no-undef': 'error'
  26. }

检查,禁用 Prettier 插件,采用 package.json 中的 prettier

安装 ESLint 插件 

在设置中,配置保存时自动修复(不要开启默认的自动保存格式化)

 保存时自动修复,代码如下

  1. // 二则冲突。可以达成vue2和vue3的统一
  2. // ESlint插件 + Vscode配置 实现自动格式化修复
  3. "editor.codeActionsOnSave": {
  4. "source.fixAll": true
  5. },
  6. // 关闭保存自动格式化
  7. "editor.formatOnSave": false,

此时,保存 可自动根据规范 进行代码修复。

参考:vue3项目 - Eslint 配置代码风格_eslint配置模板-CSDN博客

三 仍有爆红

禁用插件vetur

最后重启vscode就可以啦!!!

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

闽ICP备14008679号