-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
tools: lint typescript files #58256
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
base: main
Are you sure you want to change the base?
tools: lint typescript files #58256
Conversation
Review requested:
|
test/fixtures/source-map/output/source_map_throw_async_stack_trace.mts
Outdated
Show resolved
Hide resolved
Hiya! I contributed part of this change, so I'd love if you could add me as a Co-Author. Thanks! |
Sorry for not doing that before, TIL about co-authoring commits. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #58256 +/- ##
==========================================
- Coverage 90.21% 90.20% -0.02%
==========================================
Files 635 635
Lines 187171 187171
Branches 36748 36753 +5
==========================================
- Hits 168851 168831 -20
- Misses 11069 11122 +53
+ Partials 7251 7218 -33 🚀 New features to boost your workflow:
|
I think in order for co-authorship to work in this repo, you must add the co-author to the first commit (it's currently applied to an intermediary commit, which will get flattened and thus the co-authorship lost). |
Co-Authored-By: avivkeller <[email protected]>
Co-Authored-By: avivkeller <[email protected]>
@@ -11,9 +11,11 @@ declare namespace InternalBlobBinding { | |||
} | |||
|
|||
export interface BlobBinding { | |||
createBlob(sources: Array<Uint8Array | InternalBlobBinding.BlobHandle>, length: number): InternalBlobBinding.BlobHandle; | |||
createBlob(sources: Array<Uint8Array | InternalBlobBinding.BlobHandle>, |
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 break at the parameter?
* | ||
* blocks */ | ||
* | ||
* blocks */ |
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.
Feels like the idea of linting test files like this is not a good idea - don't you want to have a variety of styles tested?
Co-authored-by: Daniel Rosenwasser <[email protected]>
Co-authored-by: Daniel Rosenwasser <[email protected]>
closes #55702 by adding typescript-eslint to the linting rules.
Thanks to @avivkeller for this closed PR #55709.