Skip to content

Commit c4c63f4

Browse files
authored
chore: add missing scripts to sentinel-api-service (#9522)
## Explanation `sentinel-api-service` was missing `lint:tsconfigs` and `lint:tsconfigs:fix` after #8384 was merged. ## References <!-- Are there any issues that this pull request is tied to? Are there other links that reviewers should consult to understand these changes better? Are there client or consumer pull requests to adopt any breaking changes? For example: * Fixes #12345 * Related to #67890 --> ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] I've communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/processes/updating-changelogs.md) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/processes/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Only `package.json` script entries change; no runtime or API behavior is affected. > > **Overview** > Adds **`lint:tsconfigs`** and **`lint:tsconfigs:fix`** to `@metamask/sentinel-api-service`’s `package.json`, using the same shared `../../scripts/lint-tsconfigs/lint-tsconfigs.mts` entry points as other packages. > > This brings the package in line with the monorepo convention introduced in #8384 so tsconfig lint can run locally and in CI for this package too. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 7ad22af. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 58cd8e9 commit c4c63f4

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/sentinel-api-service/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444
"build:docs": "typedoc",
4545
"changelog:update": "../../scripts/update-changelog.sh @metamask/sentinel-api-service",
4646
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/sentinel-api-service",
47+
"lint:tsconfigs": "tsx ../../scripts/lint-tsconfigs/lint-tsconfigs.mts",
48+
"lint:tsconfigs:fix": "tsx ../../scripts/lint-tsconfigs/lint-tsconfigs.mts --fix",
4749
"messenger-action-types:check": "tsx ../../packages/messenger-cli/src/cli.ts --formatter oxfmt --check",
4850
"messenger-action-types:generate": "tsx ../../packages/messenger-cli/src/cli.ts --formatter oxfmt --generate",
4951
"since-latest-release": "../../scripts/since-latest-release.sh",

0 commit comments

Comments
 (0)