repositories
/
poolifier.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
acb76ac
)
Add editor configuration file.
author
Jérôme Benoit
<jerome.benoit@sap.com>
Mon, 8 Feb 2021 16:33:03 +0000
(17:33 +0100)
committer
Jérôme Benoit
<jerome.benoit@sap.com>
Mon, 8 Feb 2021 16:33:03 +0000
(17:33 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
.editorconfig
[new file with mode: 0644]
patch
|
blob
diff --git a/.editorconfig
b/.editorconfig
new file mode 100644
(file)
index 0000000..
5f5dd09
--- /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