-
Notifications
You must be signed in to change notification settings - Fork 55
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
Get eslint working with GitHub actions #262
Conversation
HerbCaudill
commented
Dec 28, 2023
- Makes eslint happy either by fixing code or disabling rules (locally or globally)
- Uses a single config file and lint command at the monorepo root
- Updates the lint workflow to work with pnpm rather than yarn
@@ -330,10 +334,10 @@ export class DocSynchronizer extends Synchronizer { | |||
} | |||
|
|||
this.#processAllPendingSyncMessages() | |||
this.#processSyncMessage(message, new Date()) |
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.
?
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.
Couple of little things -- one is just a typo and the other I'm less clear on. Why did you remove the date argument from the processSyncMessage? Was it unused? Let's ping @alexjg or @paulsonnentag to see if they know what's up there.
Yeah, eslint flagged the date parameter as unused. |