summaryrefslogtreecommitdiff
path: root/tools/check-lint
Commit message (Collapse)AuthorAge
* Include tests (as well as benchmarks, examples, and anything else we add ↵Owen Jacobson2025-08-24
| | | | | | later on) when checking validity of Rust code. I inadvertantly broke a test and my pre-commit hook, which runs `tools/check-lint`, didn't catch it.
* 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.