mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-16 15:58:17 +00:00
354ac9c2f6
* ci: add separate `typo` job * add `typos.toml` for false positives * fix all typos * ci: add `cargo doc` step * fix doc errors * contributing.md: update passing CI steps * fix more typos, add exception to `cryptonight/` * ci: move `cargo doc` step within `ci` job It needs dependencies. * ci: add https://github.com/Cuprate/cuprate/pull/63 * test-utils: fix typo * ci: switch `rustup update` and switch order * ci: only update rust on unix * ci: set `RUSTDOCFLAGS` env earlier * ci: only run `cargo doc` on linux * ci: remove `bash` on `cargo doc` * ci: remove `--all-targets` We now have the target OS's in CI, no need to compile for each. * contributing.md: update ci steps * ci: add `--all-targets` back to clippy, build * update contributing.md
16 lines
278 B
TOML
16 lines
278 B
TOML
[default]
|
|
# False positive patterns.
|
|
extend-ignore-identifiers-re = [
|
|
"ND",
|
|
"DNE",
|
|
# in file: `/cryptonight/c/oaes_lib.c:1213`
|
|
# not sure if false-positive or not.
|
|
"InvMixColums",
|
|
]
|
|
|
|
[files]
|
|
# False positive files.
|
|
extend-exclude = [
|
|
"/misc/gpg_keys/",
|
|
"cryptonight/",
|
|
]
|