summary refs log tree commit diff
path: root/.editorconfig
diff options
context:
space:
mode:
authorSophie Forrest <git@sophieforrest.com>2024-10-04 23:25:44 +1300
committerSophie Forrest <git@sophieforrest.com>2024-10-04 23:25:44 +1300
commit1f82a90833990db8efe6111f89a9126a2fde74c5 (patch)
treeba7783a34a51fa710e332b00f824cef93abc2436 /.editorconfig
parentd58a4d4ec245ea336b0e8b93e5ae3907b39395b4 (diff)
feat: refactor tooling
Diffstat (limited to '')
-rw-r--r--.editorconfig23
1 files changed, 23 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..2d185af
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,23 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+insert_final_newline = true
+max_line_length = 100
+trim_trailing_whitespace = true
+
+[justfile]
+indent_size = 4
+indent_style = space
+
+[*.{md,nix}]
+indent_size = 2
+indent_style = space
+
+[*.md]
+max_line_length = 80
+
+[{.envrc,flake.lock}]
+# We really don't care for this file
+max_line_length = 1000