2022-12-24 21:49:18 +09:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "2"
|
2025-01-28 18:02:39 +11:00
|
|
|
members = ["tools/codegen", "tools/manifest-schema"]
|
2023-10-31 03:08:57 +09:00
|
|
|
|
2024-01-28 01:46:28 +09:00
|
|
|
# This table is shared by projects under github.com/taiki-e.
|
2025-02-08 15:38:36 +09:00
|
|
|
# Expect for unexpected_cfgs.check-cfg, it is not intended for manual editing.
|
2023-10-31 03:08:57 +09:00
|
|
|
[workspace.lints.rust]
|
2024-08-25 21:57:04 +09:00
|
|
|
deprecated_safe = "warn"
|
2023-10-31 03:08:57 +09:00
|
|
|
improper_ctypes = "warn"
|
|
|
|
|
improper_ctypes_definitions = "warn"
|
|
|
|
|
non_ascii_idents = "warn"
|
|
|
|
|
rust_2018_idioms = "warn"
|
|
|
|
|
single_use_lifetimes = "warn"
|
2024-05-29 03:15:59 +09:00
|
|
|
unexpected_cfgs = { level = "warn", check-cfg = [
|
|
|
|
|
] }
|
2025-01-07 00:52:02 +09:00
|
|
|
unnameable_types = "warn"
|
2023-10-31 03:08:57 +09:00
|
|
|
unreachable_pub = "warn"
|
|
|
|
|
unsafe_op_in_unsafe_fn = "warn"
|
|
|
|
|
[workspace.lints.clippy]
|
|
|
|
|
all = "warn" # Downgrade deny-by-default lints
|
|
|
|
|
pedantic = "warn"
|
|
|
|
|
as_ptr_cast_mut = "warn"
|
2024-06-21 22:13:34 +09:00
|
|
|
as_underscore = "warn"
|
2023-10-31 03:08:57 +09:00
|
|
|
default_union_representation = "warn"
|
|
|
|
|
inline_asm_x86_att_syntax = "warn"
|
|
|
|
|
trailing_empty_array = "warn"
|
|
|
|
|
transmute_undefined_repr = "warn"
|
|
|
|
|
undocumented_unsafe_blocks = "warn"
|
2025-01-13 23:41:50 +09:00
|
|
|
unused_trait_names = "warn"
|
2023-10-31 03:08:57 +09:00
|
|
|
# Suppress buggy or noisy clippy lints
|
2024-01-10 02:41:03 +09:00
|
|
|
bool_assert_comparison = { level = "allow", priority = 1 }
|
2023-10-31 03:08:57 +09:00
|
|
|
borrow_as_ptr = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286
|
2026-02-27 23:37:00 +09:00
|
|
|
cast_lossless = { level = "allow", priority = 1 } # suggested code has poor codegen with -C opt-level=0 https://godbolt.org/z/GzTxzbd9q
|
|
|
|
|
collapsible_match = { level = "allow", priority = 1 }
|
2024-03-18 10:44:39 +09:00
|
|
|
declare_interior_mutable_const = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665
|
2023-10-31 03:08:57 +09:00
|
|
|
doc_markdown = { level = "allow", priority = 1 }
|
|
|
|
|
float_cmp = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
|
2024-05-29 03:15:59 +09:00
|
|
|
incompatible_msrv = { level = "allow", priority = 1 } # buggy: doesn't consider cfg, https://github.com/rust-lang/rust-clippy/issues/12280, https://github.com/rust-lang/rust-clippy/issues/12257#issuecomment-2093667187
|
2023-10-31 03:08:57 +09:00
|
|
|
manual_assert = { level = "allow", priority = 1 }
|
|
|
|
|
manual_range_contains = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/6455#issuecomment-1225966395
|
|
|
|
|
missing_errors_doc = { level = "allow", priority = 1 }
|
2024-07-02 00:32:42 +09:00
|
|
|
module_name_repetitions = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+module_name_repetitions
|
2024-08-23 22:42:58 +09:00
|
|
|
naive_bytecount = { level = "allow", priority = 1 }
|
2024-05-29 03:15:59 +09:00
|
|
|
nonminimal_bool = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+nonminimal_bool
|
2024-07-02 00:32:42 +09:00
|
|
|
range_plus_one = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+range_plus_one
|
2023-10-31 03:08:57 +09:00
|
|
|
similar_names = { level = "allow", priority = 1 }
|
|
|
|
|
single_match = { level = "allow", priority = 1 }
|
|
|
|
|
single_match_else = { level = "allow", priority = 1 }
|
|
|
|
|
struct_excessive_bools = { level = "allow", priority = 1 }
|
2024-01-10 02:41:03 +09:00
|
|
|
struct_field_names = { level = "allow", priority = 1 }
|
2023-10-31 03:08:57 +09:00
|
|
|
too_many_arguments = { level = "allow", priority = 1 }
|
|
|
|
|
too_many_lines = { level = "allow", priority = 1 }
|
|
|
|
|
type_complexity = { level = "allow", priority = 1 }
|