Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-rust
- run: cargo fmt --check
- run: cargo clippy -V
- run: cargo clippy --all-targets -- -D warnings --no-deps
- run: cargo clippy --all-targets --features native-rust-ssh -- -D warnings --no-deps
Rust-Typos:
Expand Down
4 changes: 3 additions & 1 deletion rust/src/openvasd/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// We allow this fow now, since it would require lots of changes
// but should eventually solve this.
#![allow(clippy::large_enum_variant)]
// SPDX-FileCopyrightText: 2023 Greenbone AG
//
// SPDX-License-Identifier: GPL-2.0-or-later WITH x11vnc-openssl-exception

#![doc = include_str!("README.md")]
// We allow this fow now, since it would require lots of changes
// but should eventually solve this.
Expand Down
Loading