From 1f82a90833990db8efe6111f89a9126a2fde74c5 Mon Sep 17 00:00:00 2001 From: Sophie Forrest Date: Fri, 4 Oct 2024 23:25:44 +1300 Subject: feat: refactor tooling --- .editorconfig | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .editorconfig (limited to '.editorconfig') 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 -- cgit 1.4.1