当前位置:   article > 正文

uniapp 配置eslint语法检查和自动纠正格式_uniapp 重排代码格式 配置

uniapp 重排代码格式 配置

如今开发,哪有不用eslint辅助工具的,多方便嘛!上干货

 

我是用vscode开发,这里只针对vscode;

1.下载esline插件

安装重启可生效;

2.在uniapp目录中下载安装eslint-config-standard

在当前项目中执行npx eslint --init,安装成功完毕后,项目工程目录下会自动生成.eslintrc.js文件,此时你的语法检查已经生效。

3.配置自动纠正格式

打开设置>settings.json

把以下代码替换保存就可以了

  1. {
  2.   // vscode默认启用了根据文件类型自动设置tabsize的选项
  3.   "editor.detectIndentation": false,
  4.   // 重新设定tabsize
  5.   "editor.tabSize": 2,
  6.   // #每次保存的时候自动格式化 
  7.   "editor.formatOnSave": true,
  8.   // #每次保存的时候将代码按eslint格式进行修复
  9.   "eslint.autoFixOnSave": true,
  10.   // 添加 vue 支持
  11.   "eslint.validate": [
  12.     "javascript",
  13.     "javascriptreact",
  14.     {
  15.       "language": "vue",
  16.       "autoFix": true
  17.     }
  18.   ],
  19.   //  #让prettier使用eslint的代码格式进行校验 
  20.   "prettier.eslintIntegration": true,
  21.   //  #去掉代码结尾的分号 
  22.   "prettier.semi": false,
  23.   //  #使用带引号替代双引号 
  24.   "prettier.singleQuote": true,
  25.   //  #让函数(名)和后面的括号之间加个空格
  26.   "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
  27.   // #这个按用户自身习惯选择 
  28.   "vetur.format.defaultFormatter.html": "js-beautify-html",
  29.   // #让vue中的js按编辑器自带的ts格式进行格式化 
  30.   "vetur.format.defaultFormatter.js": "vscode-typescript",
  31.   "vetur.format.defaultFormatterOptions": {
  32.     "js-beautify-html": {
  33.       "wrap_attributes": "force-aligned"
  34.       // #vue组件中html代码格式化样式
  35.     }
  36.   },
  37.   // 格式化stylus, 需安装Manta's Stylus Supremacy插件
  38.   "stylusSupremacy.insertColons": false, // 是否插入冒号
  39.   "stylusSupremacy.insertSemicolons": false, // 是否插入分好
  40.   "stylusSupremacy.insertBraces": false, // 是否插入大括号
  41.   "stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行
  42.   "stylusSupremacy.insertNewLineAroundBlocks": false,
  43.   "editor.suggestSelection": "first",
  44.   "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  45.   "editor.codeActionsOnSave": {
  46.     "source.fixAll.eslint": true
  47.   } // 两个选择器中是否换行
  48. }

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

闽ICP备14008679号