Skip to content
Snippets Groups Projects
Verified Commit e252646f authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

refactor: moved unknown_lints to the code

parent 136cc4db
No related branches found
No related tags found
No related merge requests found
Pipeline #2101 failed
......@@ -34,7 +34,7 @@ jobs:
- name: Verify Rust code format
run: cargo fmt --all -- --check
- name: Verify Rust code linting
run: cargo clippy -- -D warnings -A unknown-lints
run: cargo clippy -- -D warnings
- name: Build development version
run: cargo build
- name: Build release version
......@@ -70,7 +70,7 @@ jobs:
- name: Verify Rust code format
run: cargo fmt --all -- --check
- name: Verify Rust code linting
run: cargo clippy -- -D warnings -A unknown-lints
run: cargo clippy -- -D warnings
- name: Install wasm-pack
run: cargo install wasm-pack
- name: Build WASM Web binary
......
......@@ -34,7 +34,7 @@ build-rust:
- rustup component add clippy
- rustc --version
- cargo fmt --all -- --check
- if [[ $RUST_VERSION != nightly ]]; then cargo clippy -- -D warnings -A unknown-lints; fi
- if [[ $RUST_VERSION != nightly ]]; then cargo clippy -- -D warnings; fi
- cargo build
- cargo build --release
......
#![allow(clippy::uninlined_format_args)]
#![allow(clippy::uninlined_format_args, unknown_lints)]
pub mod data;
pub mod util;
......
#![allow(clippy::uninlined_format_args)]
#![allow(clippy::uninlined_format_args, unknown_lints)]
pub mod cpu;
pub mod data;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment