Vscode配置设置json文件

第一种配置:

{
“files.autoSave”: “off”,
“vetur.format.options.tabSize”: 4,
“window.zoomLevel”: 0
}

// {
// // vscode默认启用了根据文件类型自动设置tabsize的选项
// “editor.detectIndentation”: false,
// // 重新设定tabsize
// “editor.tabSize”: 4,
// // #值设置为true时,每次保存的时候自动格式化;值设置为false时,代码格式化请按shift+alt+F
// “editor.formatOnSave”: false,
// // #每次保存的时候将代码按eslint格式进行修复
// “eslint.autoFixOnSave”: false,
// // 添加 vue 支持
// “eslint.validate”: [
// “javascript”,
// “javascriptreact”,
// {
// “language”: “vue”,
// “autoFix”: true
// }
// ],
// // #让prettier使用eslint的代码格式进行校验
// “prettier.eslintIntegration”: true,
// // #去掉代码结尾的分号
// “prettier.semi”: false,
// // #使用带引号替代双引号
// “prettier.singleQuote”: true,
// “prettier.tabWidth”: 4,
// // #让函数(名)和后面的括号之间加个空格

你可能感兴趣的:(VSCode,visual,studio,code)