diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-08-24 23:34:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 22:34:53 +0100 |
commit | 1809c22b080de4f1daeaea949d1bf46b765b0252 (patch) | |
tree | a445cb0b41c4bf5cd7cef6943cb05893a02af27b | |
parent | f9bc3c9d1834cb8bd5f872b749b057c33e8b0102 (diff) | |
download | NorthstarLauncher-1809c22b080de4f1daeaea949d1bf46b765b0252.tar.gz NorthstarLauncher-1809c22b080de4f1daeaea949d1bf46b765b0252.zip |
Add editorconfig file (#246)
* Add editorconfig file
It's a cross-editor compatible config file that defines certain editor
behaviour (e.g. adding/removing newline at end of file)
It is supported by major editors like Visual Studio (Code) and by
version control providers like GitHub.
Should end the constant adding/removing of final newline in PRs
* More settings
- unicode by default
- trim newlines
- use tabs for indentation (ugh)
-rw-r--r-- | .editorconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..bc423183 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# For more info on `.editorconfig` file see https://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Newline ending every file +[*] +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = tab |