commit ce0db3102e7a9c2993ba6ce7be958147da12a403 Author: Benjamin Date: Tue Sep 20 22:39:19 2022 +0200 Initial commit Add .editorconfig and extension recommendation for VSCode 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" + ] +}