15dcb09036
* Migrate check_copyright to Rust * Add a new lint to check accidental usages of /// in ts/svelte comments * Fix a bunch of incorrect jdoc comments * Move contributor check into minilints Will allow users to detect the issue locally with './ninja check' before pushing to CI. * Make Cargo.toml consistent with other crates
16 lines
266 B
TOML
16 lines
266 B
TOML
[package]
|
|
name = "minilints"
|
|
publish = false
|
|
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.71"
|
|
camino = "1.1.4"
|
|
once_cell = "1.17.1"
|
|
walkdir = "2.3.3"
|