diff options
author | Christian Breunig <christian@breunig.cc> | 2023-07-08 17:25:58 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-07-08 17:26:48 +0200 |
commit | edf9186cee3b6360ecd2692c7bd79e4503e7f69d (patch) | |
tree | 185a706b4f77cff7eba8212a8076fb33badab001 | |
parent | 16731fda08930147d68b24ee84862f6f658c7332 (diff) | |
download | vyos-1x-edf9186cee3b6360ecd2692c7bd79e4503e7f69d.tar.gz vyos-1x-edf9186cee3b6360ecd2692c7bd79e4503e7f69d.zip |
Add VScode configuration files
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | .vscode/settings.json | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index fe92f5b9d..e766a2c27 100644 --- a/.gitignore +++ b/.gitignore @@ -133,6 +133,10 @@ debian/*.substvars *.vpwhist *.vtg +# VS Code +.vscode/* +!.vscode/settings.json + # VIM *.swp diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..994718d2e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "files.trimTrailingWhitespace": true, + "editor.tabSize": 4, + "editor.insertSpaces": true, + "files.insertFinalNewline": true, + "files.eol": "\n", +} |