当前位置:   article > 正文

vscode的格式化的settings.json的个人配置_vscode setting.json配置

vscode setting.json配置
  1. {
  2. // vscode默认启用了根据文件类型自动设置tabsize的选项
  3. "editor.detectIndentation": false,
  4. //黄色波浪线
  5. "eslint.enable": false,
  6. // 重新设定tabsize
  7. "editor.tabSize": 2,
  8. "editor.fontSize": 16,
  9. // #每次保存的时候自动格式化
  10. "editor.formatOnSave": true,
  11. // #每次保存的时候将代码按eslint格式进行修复 ,"eslint.autoFixOnSave": true 这个已经过时了
  12. "editor.codeActionsOnSave": {
  13. "source.fixAll": true
  14. },
  15. "editor.snippetSuggestions": "top", // 代码提示。许多插件都有代码提示,代码缩写提示优先显示在最上方
  16. // 粘贴后的内容, 是否自动格式化
  17. "editor.formatOnPaste": false,
  18. "eslint.format.enable": true,
  19. "files.autoSave": "afterDelay", //超过屏幕视图换行
  20. "eslint.validate": [
  21. // eslint规则对以下几种后缀文件生效. 默认为["javascript", "javascriptreact"]
  22. "javascript",
  23. "javascriptreact",
  24. "html",
  25. "typescript",
  26. "typescriptreact"
  27. ],
  28. // 使能每一种语言默认格式化规则
  29. "[json]": {
  30. // 对json文件,使用 JSON语言功能 进行格式化
  31. "editor.defaultFormatter": "vscode.json-language-features"
  32. },
  33. "[html]": {
  34. // 对html文件,使用 vscode.html-language-features(vscode内置规则) 进行格式化,不要使用 prettier
  35. "editor.defaultFormatter": "vscode.html-language-features"
  36. },
  37. "[javascript]": {
  38. "editor.defaultFormatter": "esbenp.prettier-vscode"
  39. },
  40. "[css]": {
  41. "editor.defaultFormatter": "esbenp.prettier-vscode"
  42. },
  43. "[scss]": {
  44. "editor.defaultFormatter": "esbenp.prettier-vscode"
  45. },
  46. "[vue]": {
  47. // 可选值: eslint :"dbaeumer.vscode-eslint" vetur: "octref.vetur" prettier: "esbenp.prettier-vscode"
  48. // 对 vue 文件,使用 prettier(格式化规则) + eslint(校验) 进行格式化,也可以选择 vetur 插件,或者单独选择prettier不加eslint
  49. "editor.defaultFormatter": "octref.vetur"
  50. },
  51. "[typescript]": {
  52. // 对ts文件进行格式化时,使用哪一种风格 (此处使用的是vscode中安装的ts插件默认风格进行格式化)
  53. "editor.defaultFormatter": "vscode.typescript-language-features"
  54. },
  55. "search.exclude": {
  56. // VScode进行文件搜索时,不搜索这些区域。
  57. "**/node_modules": true,
  58. "**/bower_components": true,
  59. "**/*.code-search": true,
  60. "**/.DS_Store": true,
  61. "**/.git": true,
  62. "**/.gitignore": true,
  63. "**/.idea": true,
  64. "**/.svn": true,
  65. "**/.vscode": true,
  66. "**/build": true,
  67. "**/dist": true,
  68. "**/tmp": true,
  69. "**/yarn.lock": true,
  70. "**/assets": true
  71. },
  72. "files.exclude": {
  73. "**/.git": true,
  74. "**/.svn": true,
  75. "**/.hg": true,
  76. "**/CVS": true,
  77. "**/.DS_Store": true,
  78. },
  79. // 配置文件关联
  80. "files.associations": {
  81. // 比如小程序中的 .wxss 这种文件,会把它作为css文件来处理,提供对应的css的语法提示,css的格式化等。
  82. "*.wxss": "css",
  83. "*.cjson": "jsonc",
  84. "*.wxs": "javascript",
  85. "*.ts": "typescript",
  86. "*.vue": "vue",
  87. "*.dart": "dart"
  88. },
  89. /* prettier的配置 */
  90. "prettier.printWidth": 10000, // 超过最大值换行
  91. "prettier.tabWidth": 2, // 缩进字节数
  92. "prettier.useTabs": false, // 缩进不使用tab,使用空格
  93. "prettier.semi": false, // 句尾添加分号
  94. "prettier.singleQuote": true, // 使用单引号代替双引号
  95. "prettier.proseWrap": "preserve", // 默认值。因为使用了一些折行敏感型的渲染器(如GitHub comment)而按照markdown文本样式进行折行
  96. "prettier.arrowParens": "avoid", // (x) => {} 箭头函数参数只有一个时是否要有小括号。avoid:省略括号
  97. "prettier.bracketSpacing": true, // 在对象,数组括号与文字之间加空格 "{ foo: bar }"
  98. "prettier.endOfLine": "auto", // 结尾是 \n \r \n\r auto
  99. "prettier.htmlWhitespaceSensitivity": "ignore",
  100. "prettier.ignorePath": ".prettierignore", // 不使用prettier格式化的文件填写在项目的.prettierignore文件中
  101. "prettier.jsxBracketSameLine": false, // 在jsx中把'>' 是否单独放一行
  102. "prettier.jsxSingleQuote": false, // 在jsx中使用单引号代替双引号
  103. "prettier.parser": "babylon", // 格式化的解析器,默认是babylon
  104. "prettier.requireConfig": false, // Require a 'prettierconfig' to format prettier
  105. "prettier.stylelintIntegration": false, //不让prettier使用stylelint的代码格式进行校验
  106. "prettier.trailingComma": "none", // 在对象或数组最后一个元素后面是否加逗号(在ES5中加尾逗号)
  107. "prettier.tslintIntegration": false, // 不让prettier使用tslint的代码格式进行校验
  108. // #让prettier使用eslint的代码格式进行校验
  109. "prettier.eslintIntegration": true,
  110. // #让函数(名)和后面的括号之间加个空格
  111. "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
  112. // #这个按用户自身习惯选择
  113. "vetur.format.defaultFormatter.html": "js-beautify-html",
  114. // #让vue中的js按编辑器自带的ts格式进行格式化
  115. "vetur.format.defaultFormatter.js": "vscode-typescript",
  116. "vetur.format.defaultFormatterOptions": {
  117. "js-beautify-html": {
  118. "wrap_attributes": "auto"
  119. // #vue组件中html代码格式化样式 标签换行force-aligned 不换行auto
  120. }
  121. },
  122. "emmet.includeLanguages": {
  123. "wxml": "html"
  124. },
  125. "minapp-vscode.disableAutoConfig": true,
  126. "explorer.confirmDelete": false,
  127. "vetur.format.options.tabSize": 2,
  128. "git.autofetch": true, // 在push代码时,是否先自动从远端拉取代码
  129. "gitlens.advanced.messages": {
  130. // 配置gitlen中git提交历史记录的信息显示情况
  131. "suppressCommitHasNoPreviousCommitWarning": false,
  132. "suppressCommitNotFoundWarning": false,
  133. "suppressFileNotUnderSourceControlWarning": false,
  134. "suppressGitVersionWarning": false,
  135. "suppressLineUncommittedWarning": false,
  136. "suppressNoRepositoryWarning": false,
  137. "suppressResultsExplorerNotice": false,
  138. "suppressShowKeyBindingsNotice": true,
  139. "suppressUpdateNotice": true,
  140. "suppressWelcomeNotice": false
  141. },
  142. // 格式化stylus, 需安装Manta's Stylus Supremacy插件
  143. "stylusSupremacy.insertColons": true, // 是否插入冒号
  144. "stylusSupremacy.insertSemicolons": true, // 是否插入分好
  145. "stylusSupremacy.insertBraces": true, // 是否插入大括号
  146. "stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行
  147. "stylusSupremacy.insertNewLineAroundBlocks": false,
  148. "editor.suggestSelection": "first",
  149. "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", // 两个选择器中是否换行
  150. "easysass.compileAfterSave": true,
  151. "easysass.excludeRegex": "",
  152. "easysass.formats": [
  153. {
  154. "format": "expanded",
  155. "extension": ".css"
  156. },
  157. {
  158. "format": "compressed",
  159. "extension": ".min.css"
  160. }
  161. ],
  162. "easysass.targetDir": "./",
  163. "debug.openDebug": "openOnDebugBreak", // 断点调试时,遇到断点,自动显示调试视图。(全局,不可为每种语言单独配置)
  164. "terminal.integrated.rendererType": "dom",
  165. //"workbench.colorTheme": "Solarized Light",
  166. "git.suggestSmartCommit": true,
  167. "settingsSync.ignoredExtensions": [],
  168. "launch": {
  169. "configurations": [],
  170. "compounds": []
  171. },
  172. //html标签属性不换行 end
  173. "editor.wordWrap": "on",
  174. "auto-close-tag.activationOnLanguage": [
  175. "xml",
  176. "php",
  177. "blade",
  178. "ejs",
  179. "jinja",
  180. "javascript",
  181. "javascriptreact",
  182. "typescript",
  183. "typescriptreact",
  184. "plaintext",
  185. "markdown",
  186. "vue",
  187. "liquid",
  188. "erb",
  189. "lang-cfml",
  190. "cfml",
  191. "HTML (EEx)",
  192. "HTML (Eex)",
  193. "plist"
  194. ],
  195. "workbench.activityBar.visible": true,
  196. "workbench.colorCustomizations": {},
  197. "editor.fontLigatures": null,
  198. "workbench.colorTheme": "Atom One Dark",
  199. "window.zoomLevel": -1,
  200. }

参考: vscode的格式化的settings.json的个人配置 - 掘金

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号