-
Notifications
You must be signed in to change notification settings - Fork 770
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
Fix indentation #2680
Fix indentation #2680
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2680 +/- ##
==========================================
- Coverage 82.93% 82.92% -0.02%
==========================================
Files 249 249
Lines 8691 8691
==========================================
- Hits 7208 7207 -1
- Misses 1483 1484 +1
|
@reyang There is a markdownlint failure to be fixed before merge |
.editorconfig
Outdated
indent_style = space | ||
indent_size = 4 |
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.
We've got a few yml
, xml
, and json
files that are normally indent_size = 2
. I think this will affect those.
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.
Good catch, fixed.
retval += sanitycheck('**/*.csproj', allow_utf8 = True, allow_eol = (LF,)) | ||
retval += sanitycheck('**/*.htm', allow_eol = (LF,)) | ||
retval += sanitycheck('**/*.html', allow_eol = (LF,)) | ||
retval += sanitycheck('**/*.cshtml', allow_utf8 = True, allow_eol = (LF,), indent = 4) |
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.
Will indent = 4
be the default taken from .editorconfig
?
No description provided.