diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b7dee0e..da68a6a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,7 +27,7 @@ jobs: node-version-file: ".nvmrc" cache: "npm" - run: npm ci - - run: npm run lint:ts + - run: npm run lint:code links: runs-on: ubuntu-latest diff --git a/package.json b/package.json index 1455afe..2a73802 100644 --- a/package.json +++ b/package.json @@ -7,12 +7,13 @@ "start": "docusaurus start --host 0.0.0.0", "build": "docusaurus build", "lint": "npm run lint:biome && npm run lint:ts && npm run lint:links && npm run lint:md", - "lint:biome": "biome check .", + "lint:code": "npm run lint:biome && npm run lint:ts", "lint:fix": "biome format --write . && biome check --apply .", "lint:fix:unsafe": "biome check . --apply-unsafe .", "lint:ts": "tsc", "lint:links": "node scripts/linkValidator.js", "lint:md": "npx markdownlint-cli docs", + "lint:biome": "biome check .", "swizzle": "docusaurus swizzle", "deploy": "docusaurus deploy", "clear": "docusaurus clear",