Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**/node_modules
**/dist
coverage
.worktrees
wwwroot
Pages
pnpm-lock.yaml
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A configurable mock OIDC/OAuth2 server for development and testing, built on Due
```bash
pnpm install # install all workspace dependencies
pnpm lint # ESLint on all TS files
pnpm format # Prettier --write on all TS files
pnpm format # Prettier --write on all JS/TS/JSON/YAML/MD files
pnpm --filter e2e exec playwright install --with-deps chromium # install Playwright browser
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"tilt:down": "tilt down",
"tilt:ci": "tilt ci",
"lint": "eslint .",
"format": "prettier --write **/*.ts",
"format": "prettier --write \"**/*.{js,ts,json,yaml,yml,md}\"",
"prepare": "husky"
},
"workspaces": [
Expand Down
Loading