-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
chore: Clean up lint and format script names #19719
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: develop
Are you sure you want to change the base?
Changes from all commits
3aeecaa
17834d2
845029d
0af0559
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,9 +37,9 @@ | |
| "circularDepCheck": "madge --circular src/index.ts", | ||
| "clean": "rimraf build build-types build-test coverage node_modules/.deno sentry-deno-*.tgz", | ||
| "prefix": "yarn deno-types", | ||
| "fix": "oxlint . --fix", | ||
| "lint:fix": "OXLINT_TSGOLINT_DANGEROUSLY_SUPPRESS_PROGRAM_DIAGNOSTICS=true oxlint . --fix --type-aware", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Deno orphaned
|
||
| "prelint": "yarn deno-types", | ||
| "lint": "oxlint .", | ||
| "lint": "OXLINT_TSGOLINT_DANGEROUSLY_SUPPRESS_PROGRAM_DIAGNOSTICS=true oxlint . --type-aware", | ||
| "lint:es-compatibility": "es-check es2022 ./build/esm/*.js --module", | ||
| "install:deno": "node ./scripts/install-deno.mjs", | ||
| "test": "run-s install:deno deno-types test:unit", | ||
|
|
||


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.
This doc updates the lint/format commands, but it doesn’t mention the newly added root-only
yarn checkscript (format check + lint) described in the PR. Addyarn checkto the command table so contributors can discover and use the new workflow.