Disable problematic clippy configuration

This commit is contained in:
Jonas Platte 2021-08-10 15:48:34 +02:00
parent 3c76fa1492
commit 7bed18c358
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67

View File

@ -5,6 +5,9 @@ standard-macro-braces = [
{ name = "btreeset", brace = "[" },
# The macro calls itself like btreemap!(...) so this triggers for any use
# { name = "btreemap", brace = "{" },
{ name = "hashset", brace = "[" },
{ name = "hashmap", brace = "{" },
# For some reason these raise errors in some places where the macros are
# used correctly according to the config
# { name = "hashset", brace = "[" },
# { name = "hashmap", brace = "{" },
]