🧹 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

11
.vscode/settings.json vendored
View File

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