Martin Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/35185 )
Change subject: Add .editorconfig file ......................................................................
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 martin@coreboot.org --- A .editorconfig 1 file changed, 11 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/35185/1
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..eb44fcd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# EditorConfig: https://EditorConfig.org + +root = true + +[*] +indent_style = tab +tab_width = 8 +charset = utf-8 +insert_final_newline = true +end_of_line = lf +trim_trailing_whitespace = true
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35185 )
Change subject: Add .editorconfig file ......................................................................
Patch Set 1: Code-Review+1
Does this support specifying a line length limit? I can't really find anything about it.
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35185 )
Change subject: Add .editorconfig file ......................................................................
Patch Set 1: Code-Review+2
Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/35185 )
Change subject: Add .editorconfig file ......................................................................
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 martin@coreboot.org Reviewed-on: https://review.coreboot.org/c/coreboot/+/35185 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Angel Pons th3fanbus@gmail.com Reviewed-by: Patrick Georgi pgeorgi@google.com --- A .editorconfig 1 file changed, 11 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved Angel Pons: Looks good to me, but someone else must approve
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..eb44fcd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# EditorConfig: https://EditorConfig.org + +root = true + +[*] +indent_style = tab +tab_width = 8 +charset = utf-8 +insert_final_newline = true +end_of_line = lf +trim_trailing_whitespace = true