VSCodeSetting/settings.json
2022-08-17 10:16:44 +08:00

86 lines
2.3 KiB
JSON

{
"sync.autoDownload": false,
"workbench.iconTheme": "material-icon-theme",
"files.exclude": {
".vscode/": true,
"**/*.d.ts": true,
"**/*.fbx": true,
"**/*.FBX": true,
"**/*.meta": true,
"build-templates/": true,
"preview-templates/": true,
"packages/": true,
"build/": true,
"library/": true,
"local/": true,
"node_modules": true,
"temp/": true
},
"search.exclude": {
".vscode/": true,
"**/*.anim": true,
"**/*.d.ts": true,
"**/*.fire": true,
"**/*.prefab": true,
"build/": true,
"library/": true,
"temp/": true
},
"workbench.startupEditor": "welcomePage",
"php.validate.executablePath": "C:/nginx/php/php.exe",
"explorer.confirmDelete": false,
"debug.javascript.suggestPrettyPrinting": false,
// Controls how the editor should render the current line highlight.
// - none
// - gutter
// - line
// - all: Highlights both the gutter and the current line.
"editor.renderLineHighlight": "line",
// Controls if the editor should render the current line highlight only when the editor is focused.
"editor.renderLineHighlightOnlyWhenFocus": false,
// Overrides colors from the currently selected color theme.
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#49b2b93d",
// "editor.lineHighlightBorder": "red" // "#ffffff30"
},
"editor.formatOnSave": true,
"security.workspace.trust.enabled": false,
"editor.detectIndentation": false,
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"typescript.referencesCodeLens.enabled": true,
"typescript.referencesCodeLens.showOnAllFunctions": true,
"[typescript]": {
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
},
"typescript.tsdk": "node_modules\\typescript\\lib",
"settingsSync.ignoredSettings": [
"git.enabled"
],
"tabnine.experimentalAutoImports": true,
"volar.codeLens.references": false,
"editor.codeLens": false,
"debug.allowBreakpointsEverywhere": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": true,
"markdown": false
},
"sync.gist": "f795d3dac8387cf20529286054b6eb95",
"editor.inlineSuggest.enabled": true,
"workbench.editor.enablePreview": false,
"phpfmt.php_bin": "C:\\nginx\\php\\php.exe",
"eslint.probe": [
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"vue",
"markdown"
]
}