File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 69
69
70
70
- id : lint
71
71
name : Run Lint Checks
72
- run : cargo clippy --tests --benches --examples --workspace --all-targets --all-features -- -D clippy::correctness -D clippy::suspicious -D clippy::complexity -D clippy::perf -D clippy::style -D clippy::pedantic
72
+ run : cargo clippy --tests --benches --examples --workspace --all-targets --all-features
73
73
74
74
- id : docs
75
75
name : Lint Documentation
Original file line number Diff line number Diff line change @@ -115,3 +115,14 @@ opt-level = 3
115
115
[profile .release-debug ]
116
116
debug = true
117
117
inherits = " release"
118
+
119
+ [lints .clippy ]
120
+ complexity = { level = " deny" , priority = -1 }
121
+ correctness = { level = " deny" , priority = -1 }
122
+ pedantic = { level = " deny" , priority = -1 }
123
+ perf = { level = " deny" , priority = -1 }
124
+ style = { level = " deny" , priority = -1 }
125
+ suspicious = { level = " deny" , priority = -1 }
126
+
127
+ # temp allow this lint
128
+ needless_return = " allow"
You can’t perform that action at this time.
0 commit comments