Skip to content

Commit 530abf7

Browse files
committed
fix some lints
1 parent 09876db commit 530abf7

File tree

7 files changed

+8
-15
lines changed

7 files changed

+8
-15
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ required-features = ["binary"]
171171
members = ["site", "tests_ffi", "pad/editor", "parser"]
172172

173173
[workspace.lints.clippy]
174-
print_stdout = "warn"
175-
print_stderr = "allow"
176174
dbg_macro = "warn"
175+
print_stderr = "allow"
176+
print_stdout = "warn"
177177

178178
[lints]
179179
workspace = true

pad/editor/.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
../../.clippy.toml
1+
# ../../.clippy.toml

parser/.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
../.clippy.toml
1+
# ../.clippy.toml

site/.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
../.clippy.toml
1+
# ../.clippy.toml

site/src/uiuisms.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
1-
#![allow(clippy::needless_raw_string_hashes)]
2-
31
use leptos::*;
42
use leptos_meta::*;
5-
use leptos_router::*;
6-
7-
#[derive(Debug, Clone, PartialEq, Eq, Params)]
8-
pub struct UiuismsParams {
9-
search: Option<String>,
10-
}
113

124
#[component]
135
pub fn Uiuisms() -> impl IntoView {

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ The `uiua` crate has the following noteable feature flags:
139139
clippy::single_match,
140140
clippy::needless_range_loop,
141141
clippy::mutable_key_type,
142-
clippy::match_like_matches_macro
142+
clippy::match_like_matches_macro,
143+
mismatched_lifetime_syntaxes
143144
)]
144145
#![warn(missing_docs)]
145146

tests_ffi/.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
../.clippy.toml
1+
# ../.clippy.toml

0 commit comments

Comments
 (0)