howmany 3.0.0

A blazingly fast, intelligent code analysis tool with parallel processing, caching, and beautiful visualizations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Clippy tailors its suggestions to this floor rather than proposing APIs that
# would not compile for the oldest supported toolchain, and flags any call that
# is newer than it. Keep in step with `rust-version` in Cargo.toml: they
# disagreed, so the crate used APIs stabilised eight releases after its declared
# floor.
msrv = "1.88.0"

# Project nouns that are correctly cased but trip `doc_markdown`.
# ".." keeps clippy's own default allowlist in addition to these.
doc-valid-idents = [
    "..",
    "HowMany",
    "SARIF",
    "TOML",
    "SLOC",
]