From ce0db3102e7a9c2993ba6ce7be958147da12a403 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Tue, 20 Sep 2022 22:39:19 +0200 Subject: [PATCH] Initial commit Add .editorconfig and extension recommendation for VSCode --- .editorconfig | 12 ++++++++++++ .vscode/extensions.json | 5 +++++ 2 files changed, 17 insertions(+) create mode 100644 .editorconfig create mode 100644 .vscode/extensions.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f256bd2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = false +insert_final_newline = true diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..e2e2139 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "EditorConfig.EditorConfig" + ] +}