-
Notifications
You must be signed in to change notification settings - Fork 619
chore(lint): restore running prettier as part of linting #3274
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
chore(lint): restore running prettier as part of linting #3274
Conversation
|
Slack discussion: https://cloud-native.slack.com/archives/C08T7MZTV8W/p1764893850195369 |
|
This package does not have an assigned component owner and is considered unmaintained. As such this package is in feature-freeze and this PR will be closed with 14 days unless a new owner or a sponsor (a member of @open-telemetry/javascript-approvers) for the feature is found. It is the responsibility of the author to find a sponsor for this feature. |
david-luna
left a comment
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.
TIL declare private & private declare is allowed by the compiler.
This re-adds running prettier as part of the 'lint' step. There are separate
lint:prettierandlint:prettier:fixscripts if one wants to run just style checking.Refs: #3001
AFAICT prettier is no longer being run. My theory is that #3001 accidentally caused that.
Update: The accident is that we didn't follow-up after 3001 to add running
prettierseparately. Prettier's recommendation is to run prettier separate from linters, which I can get behind.