martin-g commented on code in PR #514:
URL: https://github.com/apache/avro-rs/pull/514#discussion_r2984414188
##########
Cargo.toml:
##########
@@ -60,3 +60,12 @@ clippy.doc_markdown = "warn"
#clippy.missing_errors_doc = "warn"
#clippy.missing_panics_doc = "warn"
rust.unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] }
+clippy.cargo = { level = "warn", priority = -1 }
+clippy.multiple_crate_versions = "allow"
+# clippy.needless_raw_string_hashes = "warn"
+# clippy.missing_panics_doc = "warn"
+# clippy.semicolon_if_nothing_returned = "warn"
+# clippy.manual_assert = "warn"
+# clippy.enum_glob_use = "warn"
+# clippy.needless_pass_by_value = "warn"
+# clippy.single_match_else = "warn"
Review Comment:
These are the lints reported by `-Dclippy::pedantic`.
Adding them here lead to many more linting issues.
I suggest to (try to) enable them once #512 is merged, to avoid merge
conflicts in whatever PR is merged second.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]