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

Revert "refactor: moved unknown_lints to the code"

This reverts commit e252646f.
parent e252646f
No related branches found
No related tags found
No related merge requests found
Pipeline #2121 passed
......@@ -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
run: cargo clippy -- -D warnings -A unknown-lints
- 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
run: cargo clippy -- -D warnings -A unknown-lints
- 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; fi
- if [[ $RUST_VERSION != nightly ]]; then cargo clippy -- -D warnings -A unknown-lints; fi
- cargo build
- cargo build --release
......
#![allow(clippy::uninlined_format_args, unknown_lints)]
#![allow(clippy::uninlined_format_args)]
pub mod data;
pub mod util;
......
#![allow(clippy::uninlined_format_args, unknown_lints)]
#![allow(clippy::uninlined_format_args)]
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