diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-08-25 00:24:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 23:24:18 +0100 |
commit | e289eaa1f7a77de79bcc640b055f8d28cf1d66ea (patch) | |
tree | 38e0a4ce97fca9d9e054f7cdce8f4b24a466e25e /.editorconfig | |
parent | 1fa0c550770612f1873a5304dc0ee0ba2811f8fd (diff) | |
download | NorthstarLauncher-e289eaa1f7a77de79bcc640b055f8d28cf1d66ea.tar.gz NorthstarLauncher-e289eaa1f7a77de79bcc640b055f8d28cf1d66ea.zip |
Update refactor (#250)
* Add PR template
* Update CI folder location
* Delete startup args txt files
* 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)
* Ignore folder rename (#245)
* Hot reload banlist on player join (#233)
* added banlist hotreload
* fix formatting
* didnt append, cleared whole file oopsie
* unfuckedunban not rewriting file
* fixed not checking for new line
Co-authored-by: ScureX <47725553+ScureX@users.noreply.github.com>
Diffstat (limited to '.editorconfig')
-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 |