Skip to content

Commit

Permalink
Fix lint, for some reason
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Oct 2, 2023
1 parent 41637c3 commit f9e6f54
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ module.exports = {
"error",
{ allowModules: ["should-semantic-release"] },
],
"n/no-unpublished-import": [
"error",
{ allowModules: ["should-semantic-release"] },
],
},
},
{
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ if (await shouldSemanticRelease()) {

- `verbose` _(default: `false`)_

```js
```ts
import { shouldSemanticRelease } from "should-semantic-release";

await shouldSemanticRelease({ verbose: true });
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"vitest": "^0.34.6",
"yaml-eslint-parser": "^1.2.2"
},
"packageManager": "pnpm@8.7.0",
"packageManager": "pnpm@8.7.1",
"engines": {
"node": ">=18"
},
Expand Down

0 comments on commit f9e6f54

Please sign in to comment.