aboutsummaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2022-11-08 22:48:33 +0100
committerGitHub <noreply@github.com>2022-11-08 22:48:33 +0100
commit90b2153a6d2620f55c22c09e9a624f81e50cca44 (patch)
tree0ab08b0d85db3a57b2f7584df75de2d31a5dc42f /.editorconfig
parent1ae49de2b49a0be84b4a842e5a6a2938bcf1889c (diff)
downloadFlightCore-90b2153a6d2620f55c22c09e9a624f81e50cca44.tar.gz
FlightCore-90b2153a6d2620f55c22c09e9a624f81e50cca44.zip
style: Add `.editorconfig` file (#42)
* style: Add `.editorconfig` file Describes some basic formatting like indentation with spaces, indentation size, final newlines, etc * docs: Add explanation for EditorConfig
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig11
1 files changed, 11 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..76edc28d
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,11 @@
+# For more info on `.editorconfig` file see https://EditorConfig.org
+
+# top-most EditorConfig file
+root = true
+
+[*.{rs,ts,vue,css}]
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+indent_style = space
+indent_size = 4