Skip to content

Commit 050439c

Browse files
authored
πŸ§‘β€πŸ’» Update .editorconfig settings (MarlinFirmware#26264)
Fixes MarlinFirmware#26219
1 parent 6907df0 commit 050439c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

β€Ž.editorconfig

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# editorconfig.org
22
root = true
33

4+
[*]
5+
trim_trailing_whitespace = true
6+
insert_final_newline = true
7+
48
[{*.patch,syntax_test_*}]
59
trim_trailing_whitespace = false
610

711
[{*.c,*.cpp,*.h,*.ino,*.py,Makefile}]
8-
trim_trailing_whitespace = true
9-
insert_final_newline = true
1012
end_of_line = lf
1113

1214
[{*.c,*.cpp,*.h,*.ino}]
@@ -18,6 +20,10 @@ indent_size = 2
1820
indent_style = tab
1921
indent_size = 2
2022

23+
[*.md]
24+
# Two spaces at the end of the line means newline in Markdown
25+
trim_trailing_whitespace = false
26+
2127
[{*.py}]
2228
indent_style = space
2329
indent_size = 4

0 commit comments

Comments
Β (0)