diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-08 20:34:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-08 20:34:52 +0100 |
commit | ffa3dc526e8a793604eabfdbf4e2caac7b1acf5f (patch) | |
tree | 4a620851b21831e9f83eae73b43e00e4956ef9b3 /.vscode/settings.json | |
parent | 520889c6e99b2ccbc5008e73769b953a45d43c57 (diff) | |
parent | c30002208d392177cb1ffc1a5c714f7ad6d573b6 (diff) | |
download | vyos-1x-ffa3dc526e8a793604eabfdbf4e2caac7b1acf5f.tar.gz vyos-1x-ffa3dc526e8a793604eabfdbf4e2caac7b1acf5f.zip |
Merge pull request #2576 from indrajitr/github-streamline
git: T5803: Adjust git configuration for baseline defaults
Diffstat (limited to '.vscode/settings.json')
-rw-r--r-- | .vscode/settings.json | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index caa87ba4a..ab3af6cf1 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,18 +1,26 @@ { - "files.trimTrailingWhitespace": true, - "editor.tabSize": 4, - "editor.insertSpaces": true, "files.insertFinalNewline": true, - "files.eol": "\n", - # https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers + "files.trimFinalNewlines": true, + "files.trimTrailingWhitespace": true, + + // https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers "files.associations": { + "*.j2": "jinja", "*.xml.i": "xml", "*.xml.in": "xml", - "*.j2": "jinja", }, - "editor.indentSize": "tabSize", "[jinja]": { - "editor.tabSize": 4, "editor.wordBasedSuggestions": false - } + }, + // https://code.visualstudio.com/docs/python/settings-reference + "python.analysis.extraPaths": [ + "./python" + ], + // https://help.gitkraken.com/gitlens/gitlens-settings/#autolink-settings + "gitlens.autolinks": [ + { + "prefix": "T", + "url": "https://vyos.dev/T<num>" + } + ], } |