summaryrefslogtreecommitdiff
path: root/docs/linting.md
Commit message (Collapse)AuthorAge
* Organize the developer docs into a "Pilcrow for Developers" book.Owen Jacobson2025-07-01
| | | | | | The audience for this is developers looking to make changes to Pilcrow, either on the server, on the included client, or via its data model. Most of the material here is drawn from existing documents, but organized somewhat more coherently. I've left some space for client documentation, though no such documents exist yet.
* tools/reformatOwen Jacobson2025-06-11
|
* Consolidate project linting into tool scripts.Owen Jacobson2025-06-09
The new `tools/check-lint` script checks lints across _all_ lintable files - JS (through `eslint`), and Rust (through `clippy` and `cargo check`). It also checks `eslint` against the whole project, not just against what's in the `ui` subdir, which means it now catches lintable issues in various JS config files.