-
Notifications
You must be signed in to change notification settings - Fork 201
Change .editorconfig to use indent = 8 for Makefiles
#1038
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,9 +23,10 @@ root = true | |
| charset = utf-8 | ||
| indent_style = space | ||
| insert_final_newline = true | ||
| max_line_length = 80 | ||
| spelling_language = en-US | ||
| tab_width = 8 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Adding References
|
||
| trim_trailing_whitespace = true | ||
| max_line_length = 80 | ||
|
|
||
| [{BUILD,*.BUILD,*.bzl,*.bazel,.bazelrc,WORKSPACE}] | ||
| indent_size = 4 | ||
|
|
@@ -38,7 +39,6 @@ indent_size = 4 | |
|
|
||
| [{Makefile,makefile,*.mk}] | ||
| indent_style = tab | ||
| indent_size = 4 | ||
|
mhucka marked this conversation as resolved.
mhucka marked this conversation as resolved.
mhucka marked this conversation as resolved.
|
||
|
|
||
| [{*.cc,*.h}] | ||
| indent_size = 2 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pull request description states that an explicit global default for
tab_width = 8is being set, but this setting is missing from the[*]section. This should be added to ensure consistent tab rendering across all file types as intended.References