-
-
Notifications
You must be signed in to change notification settings - Fork 26
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
TS Check, Lint, and Format new-package/
and vendor/
#187
Conversation
FYI, test failures are outdated snapshots, not #189, although that warning is visible in the logs. |
console.error( | ||
`There are extraneous dependencies in the ${exampleConfiguration}/ configuration: ${remainingKeys}` | ||
// prettier-ignore |
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 have to admit I'm not fond of having disable checks (for prettier or for TS) in files that package authors will then own.
Maybe in this case, we can create a new variable const keys = remainingKeys.join(', ');
above console.error(...)
?
That should get rid of the need for the ignore.
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.
You marked this as resolved, but the comment is still here. Did you apply it on a different branch maybe?
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.
Let's resolve this later, let's not block all the other PRs because of this.
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.
Huh. Well, once it's all merged I can check again.
I'll merge this PR. We can always improve things later, I don't want you to fall into Git branch hell 😅 |
Right, but if I waited a few more days, who knows how much worse it would have been 😄 |
True, true... YIKES! |
Addresses @jfmengels's feedback from jfmengels#187 (comment). Co-authored-by: Jeroen Engels <jfm.engels@gmail.com>
Addresses @jfmengels's feedback from jfmengels#187 (comment). Co-authored-by: Jeroen Engels <jfm.engels@gmail.com>
Addresses @jfmengels's feedback from jfmengels#187 (comment). Co-authored-by: Jeroen Engels <jfm.engels@gmail.com>
Addresses @jfmengels's feedback from #187 (comment). Co-authored-by: Jeroen Engels <jfm.engels@gmail.com>
Part 1 of 2.
Relates: #125