mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-08 18:05:42 +08:00
16 lines
697 B
TOML
16 lines
697 B
TOML
# Clippy configuration
|
|
# https://doc.rust-lang.org/nightly/clippy/lint_configuration.html
|
|
|
|
allow-private-module-inception = true
|
|
avoid-breaking-exported-api = false
|
|
disallowed-names = []
|
|
disallowed-macros = [
|
|
{ path = "std::dbg", reason = "it is okay to use during development, but please do not include it in main branch" },
|
|
]
|
|
disallowed-methods = [
|
|
{ path = "std::env::remove_var", reason = "this is not thread-safe and inherently unsafe; see <https://github.com/rust-lang/rust/issues/27970> for more" },
|
|
{ path = "std::env::set_var", reason = "this is not thread-safe and inherently unsafe; see <https://github.com/rust-lang/rust/issues/27970> for more" },
|
|
]
|
|
disallowed-types = [
|
|
]
|