File tree Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Original file line number Diff line number Diff line change
1
+ # top-most EditorConfig file
2
+ root = true
3
+
4
+ # All files
5
+ [* ]
6
+ charset = utf-8
7
+ end_of_line = lf
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+
11
+ # Python files
12
+ [* .py ]
13
+ indent_style = space
14
+ indent_size = 4
15
+ max_line_length = 88
16
+
17
+ # JSON files
18
+ [* .json ]
19
+ indent_style = space
20
+ indent_size = 2
21
+
22
+ # YAML files
23
+ [* .{yml,yaml} ]
24
+ indent_style = space
25
+ indent_size = 2
26
+
27
+ # Markdown files
28
+ [* .md ]
29
+ indent_style = space
30
+ indent_size = 2
31
+ trim_trailing_whitespace = false
32
+
33
+ # Configuration files
34
+ [* .{toml,ini,cfg} ]
35
+ indent_style = space
36
+ indent_size = 4
37
+
38
+ # Shell scripts
39
+ [* .sh ]
40
+ indent_style = space
41
+ indent_size = 2
42
+
43
+ # Makefile
44
+ [Makefile ]
45
+ indent_style = tab
46
+ indent_size = 4
47
+
48
+ # Jupyter notebooks
49
+ [* .ipynb ]
50
+ # Jupyter may include trailing whitespace in cell
51
+ # outputs that's semantically meaningful
52
+ trim_trailing_whitespace = false
You can’t perform that action at this time.
0 commit comments