diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-08-24 23:34:53 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-14 12:43:27 +0200 |
commit | 45be8a291ab3823e9407cac9002b287afa4a22c1 (patch) | |
tree | a203fbe777dfdf1174b0a1a6e9efd95dea618fe2 | |
parent | 4625e5e55eb2576f6ec2ccc19faac61c16217894 (diff) | |
download | NorthstarLauncher-45be8a291ab3823e9407cac9002b287afa4a22c1.tar.gz NorthstarLauncher-45be8a291ab3823e9407cac9002b287afa4a22c1.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 |