🧹 Remove unnecessary blank lines in VS Code settings file

This commit is contained in:
2026-01-26 22:22:16 +00:00
parent aec09d48c3
commit 3f665c293e

13
.vscode/settings.json vendored
View File

@@ -8,17 +8,14 @@
"**/code/**/*.py",
"**/code/**/*.ts"
],
// Markdown Configuration
"markdown.extension.toc.levels": "2..6",
"markdown.extension.completion.root": "./docs",
"markdown.extension.preview.autoShowPreviewToSide": true,
// Markdown Notes Configuration
"vscodeMarkdownNotes.noteCompletionConvention": "[[wiki-link]]",
"vscodeMarkdownNotes.slugifyMethod": "github-slug",
"vscodeMarkdownNotes.workspaceFilenameConvention": "uniqueFilenames",
// Todo Tree Configuration
"todo-tree.general.tags": [
"TODO",
@@ -36,7 +33,6 @@
"opacity": 50
},
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^[ \\t]*(-|\\d+.))\\s*($TAGS)",
// Code Runner Configuration
"code-runner.clearPreviousOutput": true,
"code-runner.showExecutionMessage": true,
@@ -47,12 +43,10 @@
"python": "python3",
"typescript": "ts-node"
},
// File Associations
"files.associations": {
"*.md": "markdown"
},
// Search Configuration
"search.exclude": {
"**/node_modules": true,
@@ -60,11 +54,9 @@
"**/*.code-search": true,
"**/docs/assets/**": true
},
// Auto Save
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
// Editor Configuration for Markdown
"[markdown]": {
"editor.wordWrap": "on",
@@ -76,11 +68,9 @@
"editor.snippetSuggestions": "top",
"editor.formatOnSave": true
},
// Bookmarks Configuration
"bookmarks.saveBookmarksInProject": true,
"bookmarks.navigateThroughAllFiles": true,
// GitDoc Configuration - Auto-commit on save
"gitdoc.enabled": true,
"gitdoc.autoCommitDelay": 1000,
@@ -88,7 +78,6 @@
"gitdoc.commitValidationLevel": "none",
"gitdoc.autoPush": "afterCommit",
"gitdoc.pullOnOpen": true,
// ESLint Configuration
"eslint.validate": [
"javascript",
@@ -96,4 +85,4 @@
"typescript",
"typescriptreact"
]
}
}