Skip to content

Commit

Permalink
Tooling: add config for markdown files in VS Code (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts authored Mar 29, 2024
2 parents 243643a + 70fbf5a commit 8bad212
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,24 @@
},
// JSON
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features",
"editor.formatOnSave": true,
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
// Markdown
"markdown.updateLinksOnFileMove.enabled": "prompt",
"markdown.updateLinksOnFileMove.enableForDirectories": true,
"markdown.validate.enabled": true,
"markdown.validate.fileLinks.markdownFragmentLinks": "warning",
"markdown.validate.fragmentLinks.enabled": "warning",
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
"editor.formatOnSave": true,
"files.trimTrailingWhitespace": false,
},
// Python
"python.analysis.autoFormatStrings": true,
"python.analysis.autoImportCompletions": true,
Expand Down

0 comments on commit 8bad212

Please sign in to comment.