VSCode配置文件配置项
2021年12月22日...小于 1 分钟
摘要
记录VSCode配置文件的一些零散的配置项
开启原生彩色括号
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
Python扩展
代码格式化工具
修改格式化工具的每行最大字符个数
// yapf
"python.formatting.provider": "yapf",
"python.formatting.yapfArgs": [
"--style",
"{column_limit: 200}"
],
// autopep8
"python.formatting.provider": "autopep8",
"python.formatting.autopep8Args": [
"--max-line-length=200"
],
// black
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"200"
],
代码静态检查工具
// 默认使用pylint对Python文件进行静态检查
"python.linting.pylintEnabled": true,
// 默认对Python文件进行静态检查
"python.linting.enabled": true,
// 默认在Python文件保存时进行静态检查
"python.linting.lintOnSave": true,
// 自定义pylint规则选项
"python.linting.pylintArgs": [
"--disable=C0301,W0702,C0103,C0114,C0116,W0703"
],
Vetur扩展
关闭can't find package.json in /xxxx/xxxxxx.
警告
"vetur.ignoreProjectWarning": true,
markdownlint扩展
自定义配置
"markdownlint.config": {
"MD041": false
}
Powered by Waline v3.4.2