We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 019e310 commit 7b92fe0Copy full SHA for 7b92fe0
tests/compile-fail/conf_bad_type.rs
@@ -0,0 +1,6 @@
1
+// error-pattern: error reading Clippy's configuration file: `blacklisted-names` is expected to be a `Vec < String >` but is a `integer`
2
+
3
+#![feature(plugin)]
4
+#![plugin(clippy(conf_file="./tests/compile-fail/conf_bad_type.toml"))]
5
6
+fn main() {}
tests/compile-fail/conf_bad_type.toml
@@ -0,0 +1 @@
+blacklisted-names = 42
0 commit comments