1 Star 0 Fork 0

chenguotian/Vscode workspace

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
settings.json 5.98 KB
一键复制 编辑 原始数据 按行查看 历史
chenguotian 提交于 2021-04-20 12:55 . 1. feature init vscode配置
{
// "workbench.startupEditor": "newUntitledFile",
"window.menuBarVisibility": "default",
"window.zoomLevel": 0,
"workbench.sideBar.location": "left",
"vsicons.presets.foldersAllDefaultIcon": false,
"editor.mouseWheelZoom": true,
// "docthis.inferTypesFromNames": false,
// "docthis.includeAuthorTag": false,
// "docthis.authorName": "cgt",
// "files.trimTrailingWhitespace": true,
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?;",
"editor.mouseWheelScrollSensitivity": 2,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.renderLineHighlight": "all",
"editor.renderWhitespace": "all",
"files.insertFinalNewline": false,
"css.lint.duplicateProperties": "warning",
"css.lint.compatibleVendorPrefixes": "warning",
"css.lint.float": "warning",
"html.format.indentInnerHtml": true,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "underline",
"editor.selectionHighlight": true,
"editor.occurrencesHighlight": true,
"editor.lineNumbers": "on",
"files.autoSaveDelay": 500,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.find.autoFindInSelection": "never",
"editor.find.seedSearchStringFromSelection": true,
"docthis.authorName": "CGT",
"docthis.includeDescriptionTag": true,
"docthis.enableHungarianNotationEvaluation": true,
"git.enableSmartCommit": true,
"emmet.triggerExpansionOnTab": true,
// "editor.tabCompletion": "on",
"editor.useTabStops": false,
"emmet.excludeLanguages": [
"markdown"
],
"editor.trimAutoWhitespace": false,
"vsicons.dontShowConfigManuallyChangedMessage": false,
"editor.snippetSuggestions": "top",
"files.trimTrailingWhitespace": false,
"diffEditor.ignoreTrimWhitespace": false,
"workbench.colorTheme": "Monokai Dimmed",
"workbench.iconTheme": "vscode-icons",
"vsicons.dontShowNewVersionMessage": true,
"html.format.enable": true,
"element-helper.version": "2.0",
"vsicons.projectDetection.disableDetect": true,
// "emmet.includeLanguages": {"vue-html": "html",
// "javascript": "javascriptreact"
// },
// "emmet.showExpandedAbbreviation": "inMarkupAndStylesheetFilesOnly"
// ,"terminal.integrated.cwd": "/第二个月/第一周"
// ,"view-in-browser.customBrowser": "mozilla"
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"terminal.external.windowsExec": "",
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.html": "js-beautify-html",
"prettier.singleQuote": true,
"prettier.semi": false,
// "vetur.format.defaultFormatter.html": "js-beautify-html",
// "vetur.format.defaultFormatterOptions": {
// "wrap_attributes": "auto"
// },
// 格式化插件的配置
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_line_length": 150,
// 属性强制折行对齐
// "wrap_attributes": "force-expand-multiline"
// "wrap_attributes": "force-aligned"
// "wrap_attributes": "force"
// "wrap_attributes": "auto"
// "wrap_attributes": "aligned-multiple"
"wrap_attributes": "preserve"
}
},
"git.confirmSync": false,
"git.autofetch": true,
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"breadcrumbs.enabled": true,
// "html.format.wrapAttributes": "force-expand-multiline",
// "html.format.wrapAttributes": "preserve-aligned",
// "html.format.wrapAttributes": "aligned-multiple"
"php.validate.executablePath": "D:/wamp64/bin/php/php7.1.26/php.exe",
"window.customMenuBarAltFocus": false,
"debug.console.wordWrap": false,
"[php]": {
"editor.defaultFormatter": "kokororin.vscode-phpfmt"
},
"php-cs-fixer.executablePath": "${extensionPath}\\php-cs-fixer.phar",
"faker.locale": "zh_CN",
"php-cs-fixer.lastDownload": 1591063241634,
"view-in-browser.customBrowser": "chrome",
"open-in-browser.default": "chrome",
"cssrem.rootFontSize": 37.5,
"cssrem.fixedDigits": 2,
"terminal.integrated.rendererType": "dom",
"html.format.wrapAttributes": "preserve-aligned",
"files.associations": {
"*.cjson": "jsonc",
"*.wxss": "css",
"*.wxs": "javascript"
},
"emmet.includeLanguages": {
"wxml": "html"
},
"minapp-vscode.disableAutoConfig": true,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"editor.fastScrollSensitivity": 7,
"terminal.integrated.fastScrollSensitivity": 25,
"docthis.includeTypes": false,
"editor.detectIndentation": false,
"workbench.list.smoothScrolling": true,
"todo-tree.tree.showScanModeButton": false,
"todo-tree.general.tags": [
"XXX",
"TODO",
"HACK",
"FIXME",
"BUG",
],
//打印日志信息,用于调试
"phpformatter.logging": true,
//不使用composer方式
"phpformatter.composer": false,
//添加自定义参数,默认的参数level已经在新版本中移出所以会导致运行出错
//RULES=[@PSR1,@PSR2,@Symfony]
//source:https://github.com/FriendsOfPHP/PHP-CS-Fixer#usage
"phpformatter.arguments": [
"--rules=@Symfony"
],
// Should point to php-cs-fixer.phar file, if you have installed this manually (without Composer). Should include .phar extension.
// php-cs-fixer.phar路径,使用composer方式时可以不填
"phpformatter.pharPath": "C:/Users/86180/Documents/php-cs-fixer-v2.phar",
// If the pharPath is set, and you are not using Composer, and you haven't added PHP to your PATH, this should point to the php.exe file.
// php路径,使用composer方式时可以不填
"phpformatter.phpPath": "D:/wamp64/bin/php/php7.1.26/php.exe",
"phpformatter.additionalExtensions": [],
"editor.minimap.maxColumn": 50,
// "editor.tabSize": 2,
// "vetur.format.options.tabSize": 2,
"editor.formatOnSaveMode": "modifications",
"editor.formatOnSave": true,
"editor.columnSelection": false,
"[json]": {
"editor.defaultFormatter": "bysabi.prettier-vscode-semistandard"
},
"editor.insertSpaces": false,
// "php.validate.executablePath": "D:/wamp64/bin/php/php7.1.26/php.exe"
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/cgt006/User.git
git@gitee.com:cgt006/User.git
cgt006
User
Vscode workspace
master

搜索帮助