vscode 个人习惯配置

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/w1019945543/article/details/80975282

文件 --> 首先项 --> 设置 (有些配置需要下载相关的配置)

{

"editor.tabSize": 2,

"files.associations": {

"*.vue": "vue"

},

"eslint.autoFixOnSave": true,

"eslint.options": {

"extensions": [

".js",

".vue"

]

},

"eslint.validate": [

"javascript",

"javascriptreact",

"vue",

"vue-html"

],

"search.exclude": {

"**/node_modules": true,

"**/bower_components": true,

"**/dist": true

},

"emmet.syntaxProfiles": {

"javascript": "jsx",

"vue": "html",

"vue-html": "html"

},

"git.confirmSync": false,

"window.zoomLevel": 0,

"vsicons.projectDetection.autoReload": true,

"typescript.check.tscVersion": false,

"editor.cursorBlinking": "smooth",

"workbench.colorTheme": "Solarized Light",

"workbench.iconTheme": "vscode-icons",

"editor.minimap.enabled": true,

"editor.minimap.renderCharacters": false,

"tslint.autoFixOnSave": true,

"beautify.tabSize": 2,

"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",

"typescript.extension.sortImports.maxNamedImportsInSingleLine": 5,

"typescript.extension.sortImports.omitSemicolon": true,

"editor.codeLens": true,

"editor.snippetSuggestions": "top",

"react-native-storybooks.port": 6006,

"git.ignoreMissingGitWarning": true

}

猜你喜欢

转载自blog.csdn.net/w1019945543/article/details/80975282
今日推荐