Skip to content

Commit 874178a

Browse files
committed
chore: wip
1 parent 90f1ef0 commit 874178a

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,35 @@
88

99
# Pickier
1010

11-
Fast Bun‑native linting and formatting. Minimal defaults. Extensible. Built for speed.
11+
Fast linting and formatting. Minimal defaults. Extensible. Built for speed.
1212

1313
## Features
1414

15-
- Fast, Bun-first CLI (no Node install required)
16-
- Lint and Format in one tool
17-
- Sensible defaults with zero-config usage
18-
- Simple, typed `pickier.config.ts` for overrides
19-
- Dry‑run mode for safe previews
20-
- Thorough tests
15+
- Fast CLI with instant feedback
16+
- Lint and format in one tool
17+
- Zero-config defaults; simple, typed `pickier.config.ts` when you need it
2118
- Import organization: splits type/value imports, sorts modules/specifiers, removes unused named imports
22-
- Optional stylistic semicolon cleanup (`format.semi`)
19+
- JSON and config sorting for common files _(e.g. `package.json`, `tsconfig.json`)_
20+
- Flexible formatting: `indent`, `indentStyle` _(tabs or spaces)_, `quotes`, `semi`, `trimTrailingWhitespace`, `maxConsecutiveBlankLines`, `finalNewline`
21+
- Smart whitespace cleanup
2322
- ESLint-style plugin system for lint rules _(load plugins, enable/disable rules, WIP labeling)_
23+
- CI-friendly reporters _(stylish, compact, JSON)_ and strict `--max-warnings` control
24+
- Programmatic API for custom tooling and editor integrations
2425

2526
## Install
2627

2728
```bash
2829
# as a dev dependency
2930
bun add -D pickier
30-
31-
# or with npm/pnpm/yarn
31+
# or
3232
npm i -D pickier
33+
# or
34+
pnpm add -D pickier
35+
# or
36+
yarn add -D pickier
3337
```
3438

35-
You can also run it directly via npx/bunx without installing:
39+
You can also run it directly via npx without installing:
3640

3741
```bash
3842
npx pickier --help

0 commit comments

Comments
 (0)