当前位置: 移动技术网 > IT编程>开发语言>其他编程 > 自己的vscode-settings.json配置详解

自己的vscode-settings.json配置详解

2020年06月23日  | 移动技术网IT编程  | 我要评论

vscode从插件库里安装eslint和prettier

实现自动格式化

{
 // 是否允许自定义的snippet片段提示
 "editor.snippetsuggestions": "top",
 // vscode默认启用了根据文件类型自动设置tabsize的选项
 "editor.detectindentation": false,
 // 重新设定tabsize
 "editor.tabsize": 2,
 // #每次保存的时候自动格式化 
 "editor.formatonsave": false,
 // #每次保存的时候将代码按eslint格式进行修复
 "eslint.autofixonsave": true,
 "editor.fontweight": "400",
 "editor.formatontype": false,
 "workbench.icontheme": "material-icon-theme",
 "git.confirmsync": false,
 "team.showwelcomemessage": false,
 "window.zoomlevel": 0,
 "editor.renderwhitespace": "boundary",
 "editor.cursorblinking": "smooth",
 "editor.minimap.enabled": true,
 "editor.minimap.rendercharacters": false,
 "window.title": "${dirty}${activeeditormedium}${separator}${rootname}",
 "editor.codelens": true,
 //eslint 代码自动检查相关配置
 "eslint.enable": true,
 "eslint.run": "ontype",
 "eslint.options": {
 "extensions": [
  ".js",
  ".vue"
 ]
 },
 // 添加 vue 支持
 "eslint.validate": [
 "javascriptreact",
 "vue",
 "javascript",
 {
  "language": "vue",
  "autofix": true
 },
 "html",
 {
  "language": "html",
  "autofix": true
 }
 ],
 // #让prettier使用eslint的代码格式进行校验 
 "prettier.eslintintegration": true,
 // #去掉代码结尾的分号 
 "prettier.semi": false,
 // #使用带引号替代双引号 
 "prettier.singlequote": true,
 // #让函数(名)和后面的括号之间加个空格
 "javascript.format.insertspacebeforefunctionparenthesis": true,
 // #这个按用户自身习惯选择 
 "vetur.format.defaultformatter.html": "js-beautify-html",
 // #让vue中的js按编辑器自带的ts格式进行格式化 
 "vetur.format.defaultformatter.js": "vscode-typescript",
 "explorer.confirmdelete": false,
 "vetur.format.defaultformatteroptions": {
 "js-beautify-html": {
  "wrap_attributes": "force-aligned"
  // #vue组件中html代码格式化样式
 }
 },
 // 格式化stylus, 需安装manta's stylus supremacy插件
 "stylussupremacy.insertcolons": false, // 是否插入冒号
 "stylussupremacy.insertsemicolons": false, // 是否插入分好
 "stylussupremacy.insertbraces": false, // 是否插入大括号
 "stylussupremacy.insertnewlinearoundimports": false, // import之后是否换行
 "stylussupremacy.insertnewlinearoundblocks": false, // 两个选择器中是否换行
 "files.associations": {
 "*.cjson": "jsonc",
 "*.wxss": "css",
 "*.wxs": "javascript"
 },
 "emmet.includelanguages": {
 "wxml": "html"
 },
 "minapp-vscode.disableautoconfig": true,
 "window.menubarvisibility": "visible",
 "git.enablesmartcommit": true,
 "git.autofetch": true,
 "liveserver.settings.donotshowinfomsg": true,
 "[html]": {
 "editor.defaultformatter": "vscode.html-language-features"
 },
 "javascript.updateimportsonfilemove.enabled": "always",
 "workbench.colortheme": "synthwave '84",
 "editor.fontsize": 18,
 "search.followsymlinks": false,
 "workbench.sidebar.location": "right",
 "vscode_custom_css.policy": true,
 "vscode_custom_css.imports": [
 "file:///c:/users/wongseedling/desktop/vscode-transparent-glow/synthwave84.css",
 "file:///c:/users/wongseedling/desktop/vscode-transparent-glow/toolbar.css",
 "file:///c:/users/wongseedling/desktop/vscode-transparent-glow/vscode-vibrancy-style.css",
 "file:///c:/users/wongseedling/desktop/vscode-transparent-glow/enable-electron-vibrancy.js",
 ],
 // 高亮的颜色,emm暂时只支持这样写
 "wxmlconfig.activecolor": {
 "color": "#e5c07b"
 },
 // 是否禁用高亮组件
 "wxmlconfig.activedisable": false,
 // 是否开启保存自动格式化
 "wxmlconfig.onsaveformat": false,
 "wxmlconfig.format": {
 "brace_style": "collapse",
 "end_with_newline": false,
 "indent_char": "",
 "indent_handlebars": false,
 "indent_inner_html": false,
 "indent_scripts": "keep",
 "indent_size": 2,
 "indent_with_tabs": true,
 "max_preserve_newlines": 1,
 "preserve_newlines": true,
 "wrap_attributes": "force-expand-multiline"
 },
 // 高亮所忽略的组件数组
 "wxmlconfig.tagnoactivearr": [
 "view",
 "button",
 "text",
 "icon",
 "image",
 "navigator",
 "block",
 "input",
 "template",
 "form",
 "camera",
 "textarea"
 ],
 "zenmode.restore": true,
 "breadcrumbs.enabled": true,
 "terminal.integrated.shell.windows": "c:\\windows\\system32\\windowspowershell\\v1.0\\powershell.exe",
 "[wxml]": {
 "editor.defaultformatter": "qiu8310.minapp-vscode"
 },
 "gitlens.advanced.messages": {
 "suppresslineuncommittedwarning": true
 },
 "javascript.format.placeopenbraceonnewlineforcontrolblocks": true,
 "editor.formatonpaste": false,
 "vsicons.presets.hidefolders": true,
 "editor.cursorstyle": "line-thin"
}

第二版本

{
 // 換行
 "editor.wordwrap": "on",
 // 是否允许自定义的snippet片段提示
 "editor.snippetsuggestions": "top",
 // vscode默认启用了根据文件类型自动设置tabsize的选项 不檢查縮進,保存后統一按設置項來設置
 "editor.detectindentation": false,
 // 重新设定tabsize 代码缩进修改成4个空格
 "editor.tabsize": 2,
 // #每次保存的时候自动格式化
 "editor.formatonsave": false,
 // #每次保存的时候将代码按eslint格式进行修复 使用eslint 風格使用standard 進行代碼規則限制
 "editor.fontweight": "200",
 "editor.formatontype": false,
 "workbench.icontheme": "material-icon-theme",
 "git.confirmsync": false,
 "team.showwelcomemessage": false,
 "window.zoomlevel": 0,
 "editor.renderwhitespace": "boundary",
 "editor.cursorblinking": "smooth",
 "editor.minimap.enabled": true,
 "editor.minimap.rendercharacters": false,
 "window.title": "${dirty}${activeeditormedium}${separator}${rootname}",
 "editor.codelens": true,
 //eslint 代码自动检查相关配置
 "eslint.enable": true,
 "eslint.run": "ontype",
 "eslint.options": {
 "configfile": "d:/.eslintrc.js",
 "plugins": ["html"],
 "extensions": [
  ".js",
  ".vue"
 ]
 },
 "eslint.validate": [
 "javascript",
 "javascriptreact",
 "html",
 "vue"
],
 // #让prettier使用eslint的代码格式进行校验
 "prettier.eslintintegration": true,
 // #去掉代码结尾的分号
 "prettier.semi": true,
 // #使用带引号替代双引号
 "prettier.singlequote": true,
 // #让函数(名)和后面的括号之间加个空格
 "javascript.format.insertspacebeforefunctionparenthesis": true,
 // #这个按用户自身习惯选择 html格式化
 "vetur.format.defaultformatter.html": "js-beautify-html",
 // #让vue中的js按编辑器自带的ts格式进行格式化
 "vetur.format.defaultformatter.js": "vscode-typescript",
 "explorer.confirmdelete": false,
 "vetur.format.defaultformatteroptions": {
 "js-beautify-html": {
  "wrap_attributes": "force-aligned"
  // #vue组件中html代码格式化样式
 }
 },
 // 格式化stylus, 需安装manta's stylus supremacy插件
 "stylussupremacy.insertcolons": false, // 是否插入冒号
 "stylussupremacy.insertsemicolons": false, // 是否插入分好
 "stylussupremacy.insertbraces": false, // 是否插入大括号
 "stylussupremacy.insertnewlinearoundimports": false, // import之后是否换行
 "stylussupremacy.insertnewlinearoundblocks": false, // 两个选择器中是否换行
 "files.associations": {
 "*.cjson": "jsonc",
 "*.wxss": "css",
 "*.wxs": "javascript"
 },
 "emmet.includelanguages": {
 "wxml": "html"
 },
 "minapp-vscode.disableautoconfig": true,
 "window.menubarvisibility": "visible",
 "git.enablesmartcommit": true,
 "git.autofetch": true,
 "liveserver.settings.donotshowinfomsg": true,
 "[html]": {
 "editor.defaultformatter": "vscode.html-language-features"
 },
 "javascript.updateimportsonfilemove.enabled": "always",
 "workbench.colortheme": "default dark+",
 // 字體大小
 "editor.fontsize": 15,
 // 設置行高
 "editor.lineheight": 20,
 "search.followsymlinks": false,
 "workbench.sidebar.location": "right",
 "vscode_custom_css.policy": true,
 "vscode_custom_css.imports": [
 "file:///c:/vscode-transparent-glow/synthwave84.css",
 "file:///c:/vscode-transparent-glow/toolbar.css",
 "file:///c:/vscode-transparent-glow/vscode-vibrancy-style.css",
 "file:///c:/vscode-transparent-glow/enable-electron-vibrancy.js"
 ],
 // 高亮的颜色,emm暂时只支持这样写
 "wxmlconfig.activecolor": {
 "color": "#e5c07b"
 },
 // 是否禁用高亮组件
 "wxmlconfig.activedisable": false,
 // 是否开启保存自动格式化
 "wxmlconfig.onsaveformat": false,
 "wxmlconfig.format": {
 "brace_style": "collapse",
 "end_with_newline": false,
 "indent_char": "",
 "indent_handlebars": false,
 "indent_inner_html": false,
 "indent_scripts": "keep",
 "indent_size": 2,
 "indent_with_tabs": false,
 "max_preserve_newlines": 1,
 "preserve_newlines": false,
 "wrap_attributes": "force-expand-multiline"
 },
 // 高亮所忽略的组件数组
 "wxmlconfig.tagnoactivearr": [
 "view",
 "button",
 "text",
 "icon",
 "image",
 "navigator",
 "block",
 "input",
 "template",
 "form",
 "camera",
 "textarea"
 ],
 "zenmode.restore": true,
 "breadcrumbs.enabled": true,
 "terminal.integrated.shell.windows": "c:\\windows\\system32\\windowspowershell\\v1.0\\powershell.exe",
 "[wxml]": {
 "editor.defaultformatter": "qiu8310.minapp-vscode"
 },
 "gitlens.advanced.messages": {
 "suppresslineuncommittedwarning": true
 },
 "javascript.format.placeopenbraceonnewlineforcontrolblocks": true,
 "editor.formatonpaste": false,
 "vsicons.presets.hidefolders": true,
 "editor.cursorstyle": "line-thin",
 "editor.suggestselection": "first",
 "vsintellicode.modify.editor.suggestselection": "automaticallyoverrodedefaultvalue",
 "editor.codeactionsonsave": {
 "source.fixall.eslint": true
 },
 "terminal.integrated.renderertype": "dom",
 "vscode_vibrancy.opacity": 0.5
}

第一项 vs code编辑使用eslint的规则去格式化代码

{
 "[javascript]": {
 "editor.defaultformatter": "hookyqr.beautify"
 },
 "[html]": {
 "editor.defaultformatter": "hookyqr.beautify"
 },
 "eslint.validate": [
 "javascript",
 "javascriptreact",
 "vue-html",
 {
  "language": "vue",
  "autofix": true
 }
 ],
 "eslint.run": "onsave",
 "eslint.autofixonsave": true,
 "editor.codeactionsonsave": {
 "source.fixall.eslint": true
 },
}

vs code还可以指定eslint的格式文件

"eslint.options": {
 "configfile": "e:/git/github/styleguide/eslint/.eslintrc.js",
 "plugins": ["html"]
},
"eslint.validate": [
 "javascript",
 "javascriptreact",
 "html",
 "vue"
]

第二项 使用 prettier - code formatter 根据eslint的规则去格式化代码

"[vue]": {
  "editor.defaultformatter": "esbenp.prettier-vscode"
 },
 "[javascript]": {
  "editor.defaultformatter": "esbenp.prettier-vscode"
 },
 "eslint.validate": [
  "javascript",
  "javascriptreact",
  "vue-html",
  {
   "language": "vue",
   "autofix": true
  }
 ],
 "eslint.run": "onsave",
 "eslint.autofixonsave": true,
 "editor.codeactionsonsave": {
  "source.fixall.eslint": true
 },

 "prettier.printwidth": 200,
 "prettier.requireconfig": true,
 "prettier.semi": false,
 "prettier.useeditorconfig": false,
 "prettier.usetabs": true,

{
 // 換行
 "editor.wordwrap": "on",
 // 是否允许自定义的snippet片段提示
 "editor.snippetsuggestions": "top",
 // vscode默认启用了根据文件类型自动设置tabsize的选项 不檢查縮進,保存后統一按設置項來設置
 "editor.detectindentation": false,
 // 重新设定tabsize 代码缩进修改成4个空格
 "editor.tabsize": 2,
 // #每次保存的时候自动格式化
 "editor.formatonsave": false,
 // #每次保存的时候将代码按eslint格式进行修复 使用eslint 風格使用standard 進行代碼規則限制
 "editor.fontweight": "200",
 "editor.formatontype": false,
 "workbench.icontheme": "vscode-icons-mac",
 "git.confirmsync": false,
 "team.showwelcomemessage": false,
 "window.zoomlevel": 0,
 "editor.renderwhitespace": "boundary",
 "editor.cursorblinking": "smooth",
 "editor.minimap.enabled": true,
 "editor.minimap.rendercharacters": false,
 "window.title": "${dirty}${activeeditormedium}${separator}${rootname}",
 "editor.codelens": true,
 //eslint 代码自动检查相关配置
 "eslint.enable": true,
 "eslint.run": "ontype",
 "eslint.options": {
 "configfile": "d:/.eslintrc.js",
 "plugins": [
  "html"
 ],
 "extensions": [
  ".js",
  ".vue"
 ]
 },
 "eslint.validate": [
 "javascript",
 "javascriptreact",
 "html",
 "vue"
 ],
 // #让prettier使用eslint的代码格式进行校验
 "prettier.eslintintegration": true,
 // #去掉代码结尾的分号
 "prettier.semi": true,
 // #使用带引号替代双引号
 "prettier.singlequote": true,
 // #让函数(名)和后面的括号之间加个空格
 "javascript.format.insertspacebeforefunctionparenthesis": true,
 // #这个按用户自身习惯选择 html格式化
 "vetur.format.defaultformatter.html": "js-beautify-html",
 // #让vue中的js按编辑器自带的ts格式进行格式化
 "vetur.format.defaultformatter.js": "vscode-typescript",
 "explorer.confirmdelete": false,
 "vetur.format.defaultformatteroptions": {
 "js-beautify-html": {
  "wrap_attributes": "force-aligned"
  // #vue组件中html代码格式化样式
 }
 },
 // 格式化stylus, 需安装manta's stylus supremacy插件
 "stylussupremacy.insertcolons": false, // 是否插入冒号
 "stylussupremacy.insertsemicolons": false, // 是否插入分好
 "stylussupremacy.insertbraces": false, // 是否插入大括号
 "stylussupremacy.insertnewlinearoundimports": false, // import之后是否换行
 "stylussupremacy.insertnewlinearoundblocks": false, // 两个选择器中是否换行
 "files.associations": {
 "*.cjson": "jsonc",
 "*.wxss": "css",
 "*.wxs": "javascript"
 },
 "emmet.includelanguages": {
 "wxml": "html"
 },
 "minapp-vscode.disableautoconfig": true,
 "window.menubarvisibility": "visible",
 "git.enablesmartcommit": true,
 "git.autofetch": true,
 "liveserver.settings.donotshowinfomsg": true,
 "[html]": {
 "editor.defaultformatter": "vscode.html-language-features"
 },
 "javascript.updateimportsonfilemove.enabled": "always",
 "workbench.colortheme": "synthwave '84",
 // 字體大小
 "editor.fontsize": 15,
 // 設置行高
 "editor.lineheight": 20,
 "search.followsymlinks": false,
 "workbench.sidebar.location": "left",
 "vscode_custom_css.policy": true,
 "vscode_custom_css.imports": [
 "file:///c:/vscode-transparent/synthwave84.css",
 "file:///c:/vscode-transparent/toolbar.css",
 "file:///c:/vscode-transparent/vscode-vibrancy-style.css",
 "file:///c:/vscode-transparent/enable-electron-vibrancy.js"
 ],
 // 高亮的颜色,emm暂时只支持这样写
 "wxmlconfig.activecolor": {
 "color": "#e5c07b"
 },
 // 是否禁用高亮组件
 "wxmlconfig.activedisable": false,
 // 是否开启保存自动格式化
 "wxmlconfig.onsaveformat": false,
 "wxmlconfig.format": {
 "brace_style": "collapse",
 "end_with_newline": false,
 "indent_char": "",
 "indent_handlebars": false,
 "indent_inner_html": false,
 "indent_scripts": "keep",
 "indent_size": 2,
 "indent_with_tabs": false,
 "max_preserve_newlines": 1,
 "preserve_newlines": false,
 "wrap_attributes": "force-expand-multiline"
 },
 // 高亮所忽略的组件数组
 "wxmlconfig.tagnoactivearr": [
 "view",
 "button",
 "text",
 "icon",
 "image",
 "navigator",
 "block",
 "input",
 "template",
 "form",
 "camera",
 "textarea"
 ],
 "zenmode.restore": true,
 "breadcrumbs.enabled": true,
 "terminal.integrated.shell.windows": "c:\\windows\\system32\\windowspowershell\\v1.0\\powershell.exe",
 "[wxml]": {
 "editor.defaultformatter": "qiu8310.minapp-vscode"
 },
 "gitlens.advanced.messages": {
 "suppresslineuncommittedwarning": true
 },
 "javascript.format.placeopenbraceonnewlineforcontrolblocks": true,
 "editor.formatonpaste": false,
 "vsicons.presets.hidefolders": true,
 "editor.cursorstyle": "line-thin",
 "editor.suggestselection": "first",
 "vsintellicode.modify.editor.suggestselection": "automaticallyoverrodedefaultvalue",
 "editor.codeactionsonsave": {
 "source.fixall.eslint": true
 },
 "terminal.integrated.renderertype": "dom",
 "vscode_vibrancy.opacity": 1,
 "npm.fetchonlinepackageinfo": false
}

到此这篇关于自己的vscode-settings.json配置的文章就介绍到这了,更多相关vscode-settings.json配置内容请搜索移动技术网以前的文章或继续浏览下面的相关文章希望大家以后多多支持移动技术网!

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网