mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-12-26 15:26:29 +00:00
7e2f56f41a
Some checks are pending
Rustlings Tests / clippy (push) Waiting to run
Rustlings Tests / fmt (push) Waiting to run
Rustlings Tests / test (macOS-latest) (push) Waiting to run
Rustlings Tests / test (ubuntu-latest) (push) Waiting to run
Rustlings Tests / test (windows-latest) (push) Waiting to run
Rustlings Tests / dev-check (push) Waiting to run
Web / Build and deploy site and docs (push) Waiting to run
15 lines
423 B
TOML
15 lines
423 B
TOML
disallowed-types = [
|
|
# Inefficient. Use `.queue(…)` instead.
|
|
"crossterm::style::Stylize",
|
|
"crossterm::style::styled_content::StyledContent",
|
|
]
|
|
|
|
disallowed-methods = [
|
|
# Inefficient. Use `.queue(…)` instead.
|
|
"crossterm::style::style",
|
|
# Use `thread::Builder::spawn` instead and handle the error.
|
|
"std::thread::spawn",
|
|
"std::thread::Scope::spawn",
|
|
# Return `ExitCode` instead.
|
|
"std::process::exit",
|
|
]
|