Skip to content

Commit 4e09ebe

Browse files
Martin Rothpgeorgi
Martin Roth
authored andcommitted
Add .editorconfig file
.editorconfig files are widely supported and offer basic configuration options for the project. This sets the indention style, line-ending, character set, tells the editor to make sure there's a newline at the end of the file and to strip trailing whitespace. For directories within the coreboot directory that would prefer a different setting, additional .editorconfig files can be placed in those directories to override any of these settings. See the EditorConfig website for more information. https://web.archive.org/web/https://editorconfig.org Change-Id: Iecf1c5450edb0db533569189aa45233b91997870 Signed-off-by: Martin Roth <[email protected]> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35185 Tested-by: build bot (Jenkins) <[email protected]> Reviewed-by: Angel Pons <[email protected]> Reviewed-by: Patrick Georgi <[email protected]>
1 parent d57ace2 commit 4e09ebe

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# EditorConfig: https://EditorConfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = tab
7+
tab_width = 8
8+
charset = utf-8
9+
insert_final_newline = true
10+
end_of_line = lf
11+
trim_trailing_whitespace = true

0 commit comments

Comments
 (0)