aboutsummaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-27 11:46:31 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-27 11:46:31 -0800
commit5d78be6c751dbfa43ec376d8de50cd0d3edd2a03 (patch)
tree98b65c15588e382db0cffb4f095d14e68c777234 /.editorconfig
parentrefresh the README (diff)
downloadfcuny.net-5d78be6c751dbfa43ec376d8de50cd0d3edd2a03.tar.gz
add extra configurations for editors
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig15
1 files changed, 15 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..8b2e254
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,15 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+insert_final_newline = true
+indent_size = 2
+indent_style = space
+trim_trailing_whitespace = true
+
+[*.{html,yaml,yml}]
+max_line_length = off
+
+[{justfile}]
+indent_size = 4