Skip to content

Commit 4d09fc6

Browse files
committed
maybe this time
1 parent f3ccee4 commit 4d09fc6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

check.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -eux
55
cargo check --quiet --workspace --all-targets
66
cargo check --quiet --workspace --all-features --lib --target wasm32-unknown-unknown
77
cargo fmt --all -- --check
8-
cargo clippy --quiet --workspace --all-targets --all-features -- -D warnings -W clippy::all
8+
cargo clippy --quiet --workspace --all-targets --all-features -- warnings -W clippy::all
99
cargo test --quiet --workspace --all-targets --all-features
1010
cargo test --quiet --workspace --doc
1111
trunk build

src/main.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![warn(clippy::all, rust_2018_idioms)]
1+
//#![warn(clippy::all, rust_2018_idioms)]
22
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] // hide console window on Windows in release
33

44
// When compiling natively:
@@ -29,7 +29,6 @@ fn main() -> eframe::Result<()> {
2929
fn main() {
3030
// Redirect `log` message to `console.log` and friends:
3131
eframe::WebLogger::init(log::LevelFilter::Debug).ok();
32-
console::log_1(&"erm, what the deuce".into());
3332
let the_canvas_id = String::from("Cellular-Automata beta 0.0.1");
3433
let web_options = eframe::WebOptions::default();
3534
wasm_bindgen_futures::spawn_local(async {

0 commit comments

Comments
 (0)