We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9a30706 + 78993c0 commit be33b65Copy full SHA for be33b65
.editorconfig
@@ -0,0 +1,35 @@
1
+root = true
2
+
3
+# All files
4
+[*]
5
+charset = utf-8
6
+end_of_line = lf
7
+indent_style = space
8
+indent_size = 2
9
+insert_final_newline = true
10
+trim_trailing_whitespace = true
11
12
+# Markdown (preserve trailing spaces for line breaks)
13
+[*.md]
14
+trim_trailing_whitespace = false
15
16
+# YAML / JSON files
17
+[*.{yml,yaml,json}]
18
19
20
+# TypeScript, JavaScript, JSX, TSX
21
+[*.{js,jsx,ts,tsx}]
22
+quote_type = single
23
24
+max_line_length = 100
25
26
+# Dockerfile
27
+[Dockerfile]
28
29
30
31
+# Shell scripts
32
+[*.sh]
33
34
35
0 commit comments