博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vscode 插件 配置
阅读量:5043 次
发布时间:2019-06-12

本文共 1452 字,大约阅读时间需要 4 分钟。

第一页

第二页

第三页

 

 

settings.json配置

 

{  "editor.fontSize": 20,  "files.autoSave": "off",  "editor.formatOnSave": true,  "editor.renderWhitespace": "all",  "editor.tabSize": 2,  "[html]": {    "editor.defaultFormatter": "vscode.html-language-features"  },  "[css]": {    "editor.defaultFormatter": "michelemelluso.code-beautifier"  },  //eslint 代码自动检查相关配置  "eslint.enable": true,  "eslint.run": "onType",  "eslint.autoFixOnSave": true,  "eslint.options": {    "extensions": [".js", ".vue"]  },  "eslint.validate": [    "javascriptreact",    "javascript",    {      "language": "vue",      "autoFix": true    },    "html",    {      "language": "html",      "autoFix": true    }  ],  "vetur.format.defaultFormatterOptions": {    "prettier": {      "semi": false,      "singleQuote": true    }  },  "files.associations": {    "*.vue": "vue",    "*.stylus": "stylus"  },  "git.enableSmartCommit": true,  "explorer.confirmDelete": false,  "stylusSupremacy.insertColons": false, // 是否插入冒号  "stylusSupremacy.insertSemicolons": false, // 是否插入分好  "stylusSupremacy.insertBraces": false, // 是否插入大括号  "stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行  "stylusSupremacy.insertNewLineAroundBlocks": false,  "workbench.iconTheme": "vscode-icons", // 两个选择器中是否换行  "languageStylus.useSeparator": true,  "languageStylus.useBuiltinFunctions": true,  "editor.colorDecorators": true,  "html.autoClosingTags": true,}

 

转载于:https://www.cnblogs.com/matd/p/10997571.html

你可能感兴趣的文章
CQL语句
查看>>
团队项目题目更换
查看>>
WebServers发布提示oracle客户端模式不一致
查看>>
新版本Eclipse安装后插件都在哪里?
查看>>
centos 7安装libreoffice
查看>>
[CF1042F] Leaf Sets
查看>>
轮播图代码分享
查看>>
hdu 4632 回文子序列计数
查看>>
二叉搜索树的后序遍历序列
查看>>
多线程的通信方法
查看>>
VM Workstation 11 安装包
查看>>
mongodb的基本操作
查看>>
Reverse Nodes in K-Group
查看>>
golang 线程与通道
查看>>
Deep learning chapter10(part2)
查看>>
C++ 最简单的日志类
查看>>
Unity3d dotween
查看>>
Java深入学习之NIO(1)
查看>>
51单片机基于定时器0的硬件延时代码
查看>>
HTML & CSS: The Good Parts
查看>>