Skip to content

Commit

Permalink
chore: fix lint scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
schoero committed Sep 1, 2024
1 parent 7def50e commit 48d5f96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.2.12",
"version": "0.2.13",
"type": "module",
"name": "unwritten",
"description": "unwritten is a cli tool that auto generates documentation from your JavaScript or TypeScript project by utilizing TSDoc or JSDoc comments.",
Expand Down Expand Up @@ -32,12 +32,12 @@
"lint": "npm run eslint && npm run markdownlint",
"lint:ci": "npm run eslint:ci && npm run markdownlint:ci",
"lint:fix": "npm run eslint:fix && npm run markdownlint:fix",
"markdownlint": "markdownlint-cli2 '**/*.md' '#node_modules'",
"markdownlint": "markdownlint-cli2 '**/*.md' '#**/node_modules'",
"markdownlint:ci": "npm run markdownlint",
"markdownlint:fix": "markdownlint-cli2-fix '**/*.md' '#node_modules'",
"markdownlint:fix": "npm run markdownlint -- --fix",
"postrelease:alpha": "npm run postrelease",
"postrelease:beta": "npm run postrelease",
"postrelease:latest": "eslint --fix package.json && markdownlint-cli2-fix 'CHANGELOG.md'",
"postrelease:latest": "eslint --fix package.json && markdownlint-cli2 --fix 'CHANGELOG.md'",
"prebuild": "npm run typecheck && npm run lint && npm run spellcheck && npm run schema",
"prerelease:alpha": "npm run test -- --run && npm run build",
"prerelease:beta": "npm run test -- --run && npm run build",
Expand Down

0 comments on commit 48d5f96

Please sign in to comment.