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.
2 parents 6bd6633 + 6e216ff commit 68726f9Copy full SHA for 68726f9
Makefile
@@ -1,8 +1,7 @@
1
.PHONY: test test_py3 publish clippy lint fmt
2
3
-# Constants used in clippy target
+# Constant used in clippy target
4
CLIPPY_LINTS_TO_DENY := warnings
5
-CLIPPY_LINTS_TO_ALLOW := clippy::new_ret_no_self
6
7
test:
8
cargo test
@@ -21,8 +20,7 @@ fmt:
21
20
clippy:
22
@touch src/lib.rs # Touching file to ensure that cargo clippy will re-check the project
23
cargo clippy --all-features --all-targets -- \
24
- $(addprefix -D ,${CLIPPY_LINTS_TO_DENY}) \
25
- $(addprefix -A ,${CLIPPY_LINTS_TO_ALLOW})
+ $(addprefix -D ,${CLIPPY_LINTS_TO_DENY})
26
27
lint: fmt clippy
28
@true
0 commit comments