diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..dd69de02 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = false + +[Makefile] +indent_style = tab \ No newline at end of file diff --git a/.gitignore b/.gitignore index 24e82bc0..d2ad7f7b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ # IDE resources -.vscode +.vscode/** +!.vscode/extensions.json + .idea .devcontainer/ diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000..828a8bea --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "editorconfig.editorconfig" + ] +} \ No newline at end of file