We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c04345e + c3f793c commit cd952bcCopy full SHA for cd952bc
.editorconfig
@@ -0,0 +1,31 @@
1
+# EditorConfig helps maintain consistent coding styles across various editors and IDEs
2
+# https://editorconfig.org
3
+
4
+root = true
5
6
+# Default settings for all files
7
+[*]
8
+end_of_line = lf
9
+insert_final_newline = true
10
+trim_trailing_whitespace = true
11
+charset = utf-8
12
+indent_style = space
13
+indent_size = 4
14
15
+# Makefile requires tab indentation
16
+[Makefile]
17
+indent_style = tab
18
19
+# JSON files
20
+[*.json]
21
22
+indent_size = 2
23
24
+# YAML files
25
+[*.{yml,yaml}]
26
27
28
29
+# Markdown files
30
+[*.md]
31
+trim_trailing_whitespace = false
0 commit comments