sql格式化 vscode_vs code保存自动格式化配置

{

// vscode默认启用了根据文件类型自动设置tabsize的选项

"editor.detectIndentation": false,

// 重新设定tabsize

"editor.tabSize": 2,

// #每次保存的时候自动格式化

"editor.formatOnSave": true,

// #每次保存的时候将代码按eslint格式进行修复

// "eslint.autoFixOnSave": true,

// 添加 vue 支持

"eslint.validate": [

"javascript",

"javascriptreact",

{

"language": "vue",

"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",

"vetur.format.defaultFormatterOptions": {

"wrap_attributes": "force-expand-multiline",

"js-beautify-html": {

"wrap_attributes": "force-expand-multiline",

"end_with_newline": false

},

"prettyhtml": {

"printWidth": 100,

"singleQuote": false,

"wrapAttributes": false,

"sortAttributes": false

}

},

// 格式化stylus, 需安装Manta's Stylus Supremacy插件

"stylusSupremacy.insertColons": false, // 是否插入冒号

"stylusSupremacy.insertSemicolons": false, // 是否插入分好

"stylusSupremacy.insertBraces": false, // 是否插入大括号

"stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行

"stylusSupremacy.insertNewLineAroundBlocks": false,

"window.zoomLevel": 0,

"[javascript]": {

"editor.defaultFormatter": "vscode.typescript-language-features"

},

"editor.codeActionsOnSave": {

"source.fixAll.eslint": true

},

"fileheader.Author": "baopeng.zhaopeng",

"fileheader.LastModifiedBy": "baopeng.zhaopeng",

"update.mode": "none",

"px-to-rem.px-per-rem": 18,

"todo-tree.tree.showScanModeButton": false,

"launch": {},

"html.format.wrapAttributes": "force",

"editor.wordWrapColumn": 120,

"files.autoSave": "off",

"editor.suggestSelection": "first",

"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",

"editor.quickSuggestions": {

"strings": true

},

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

"vsicons.dontShowNewVersionMessage": true,

"npm.includeDirectories": []

}

或者下面这个

{

//主题设置

"workbench.colorTheme": "Monokai",

// 默认编辑器字号

"editor.fontSize": 14,

//是否自动换行

"editor.wordWrap": "on",

// tab几个缩进

"editor.tabSize": 2,

// 文件自动保存

"files.autoSave": "afterDelay",

// 自动格式化粘贴的代码

"editor.formatOnPaste": true,

// 在资源管理器删除内容时候是否进行用户提醒

"explorer.confirmDelete": false,

// 控制在资源管理器内拖放移动文件或文件夹时是否进行确认

"explorer.confirmDragAndDrop": false,

// 在资源管理器拖拽文件是否进行用户提醒

"workbench.statusBar.visible": true,

// 工作区缩放级别

"window.zoomLevel": 0,

// 重命名或移动文件时,启用或禁用自动更新导入路径

"javascript.updateImportsOnFileMove.enabled": "always",

// 启用/禁用导航路径

"breadcrumbs.enabled": true,

// 终端cmd字号

"terminal.integrated.fontSize": 16,

// 不检查缩进,保存后统一按设置项来设置

"editor.detectIndentation": false,

// 编辑器初始界面

"workbench.startupEditor": "newUntitledFile",

// 工作台状态栏是否可见

"workbench.statusBar.feedback.visible":false,

// 添加多个光标时候需要的快捷键

"editor.multiCursorModifier": "ctrlCmd",

// 自定义代码片段显示的位置

"editor.snippetSuggestions": "top",

"window.menuBarVisibility": "toggle",

// 启用后,按下 TAB 键,将展开 Emmet 缩写。

"emmet.triggerExpansionOnTab": true,

// 控制编辑器在空白字符上显示符号的方式

"editor.renderWhitespace": "all",

// 控制编辑器是否应呈现空白字符

"editor.renderControlCharacters": false,

// 在文件和文件夹上显示错误和警告

"problems.decorations.enabled": false,

// html文件格式化程序

"[html]": {

"editor.defaultFormatter": "vscode.html-language-features",

"editor.codeActionsOnSave": {

// 禁止eslint对html进行校验

"source.fixAll.eslint": false,

// 禁止stylelint对html进行校验

"source.fixAll.stylelint": false

}

},

// 编辑器文件保存时的操作(MacOS:快捷键是 command + s ),并不能修复所有问题,多数还是需要手动修复

//

"editor.codeActionsOnSave": {

// 文件保存时开启eslint自动修复程序

"source.fixAll.eslint": true,

// 文件保存时开启stylelint自动修复程序

"source.fixAll.stylelint": true

},

// "[javascript]": {

// "editor.defaultFormatter": "vscode.typescript-language-features"

// },

// vscode-fileheader -----settings begin-----

// 文件作者

"fileheader.Author": "JiaoShouf2e",

// 文件最后修改者

"fileheader.LastModifiedBy": "JiaoShouf2e",

// vscode-fileheader -----settings end-----

//stylelint -----settings begin-----

// 防止编辑器内置linter与插件冲突设置

"css.validate": false,

"less.validate": false,

"scss.validate": false,

// 启用stylelint插件

"stylelint.enable": true,

//stylelint -----settings end-----

// eslint -----settings begin-----

// 是否为JavaScript文件开启eslint检测

"eslint.enable": true,

// 保存之后进行lint

"eslint.run": "onSave",

// 是否启用eslint的调试模式

"eslint.debug": true

// eslint -----settings end-----

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值