A Better Developer Experience
Pickier is a fast formatter and linter that helps you keep your codebase clean and consistent.
- Fast: Bun runtime +
fast-glob
scanning - Simple: one CLI, two core commands:
lint
andformat
- Smart: import management, JSON/tsconfig sorting, whitespace normalization
- Configurable: quotes, indent, final newlines, semicolons, rules, and plugins
Quickstart
bash
# add to your project (dev dependency)
bun add -d pickier
# pnpm add -D pickier
# npm i -D pickier
# yarn add -D pickier
Run Pickier from your project root:
bash
# check formatting without modifying files
pickier format . --check
# lint with auto-fix for debugger statements
pickier lint src --fix
Next, read the Install and Usage pages for more details.