From: Jérôme Benoit Date: Mon, 8 Feb 2021 16:33:03 +0000 (+0100) Subject: Add editor configuration file. X-Git-Tag: v2.0.0-beta.2~78^2 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=205146104b51fff3f158d1fab15e26eef6dfb27d;p=poolifier.git Add editor configuration file. Signed-off-by: Jérôme Benoit --- diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..5f5dd092 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +tab_width = 2 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +end_of_line = lf + +[*.{js,jsx,ts,tsx}] +quote_type = single + +[*.md] +max_line_length = off +trim_trailing_whitespace = false + +[{Makefile,**.mk}] +# Use tabs for indentation (Makefiles require tabs) +indent_style = tab