-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 js lint #3393
Fix js lint #3393
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #3393 +/- ##
==========================================
+ Coverage 73.11% 73.13% +0.02%
==========================================
Files 258 258
Lines 19650 19648 -2
==========================================
+ Hits 14367 14370 +3
+ Misses 4401 4396 -5
Partials 882 882
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
@@ -241,7 +241,7 @@ func TestInitContextOpen(t *testing.T) { | |||
{[]byte("hello world!"), "ascii", 12}, | |||
{[]byte("?((¯°·._.• ţ€$ţɨɲǥ µɲɨȼ๏ď€ΣSЫ ɨɲ Ќ6 •._.·°¯))؟•"), "utf", 47}, | |||
{[]byte{0o44, 226, 130, 172}, "utf-8", 2}, // $€ | |||
//{[]byte{00, 36, 32, 127}, "utf-16", 2}, // $€ | |||
// {[]byte{00, 36, 32, 127}, "utf-16", 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.
Why do we want to keep it?
// {[]byte{00, 36, 32, 127}, "utf-16", 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.
I don't want to remove code that isn't absolutely dead in a lint fixing pass.
Maybe one day we will make this work 🤷
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.
Left a few minor, non-blocking comments
What?
Fix js package lint issues
Why?
Part of #linter issues #769
Checklist
make ci-like-lint
) and all checks pass.make tests
) and all tests pass.Related PR(s)/Issue(s)