Initial commit

Add .editorconfig and extension recommendation for VSCode
This commit is contained in:
Benjamin 2022-09-20 22:39:19 +02:00
commit ce0db3102e
2 changed files with 17 additions and 0 deletions

12
.editorconfig Normal file
View file

@ -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

5
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"recommendations": [
"EditorConfig.EditorConfig"
]
}