Skip to content

Commit 1974e1a

Browse files
ci: fix clippy check spelling and labeler failures
1 parent ee2661e commit 1974e1a

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/labeler.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
possible stability impact:
2-
- libfdo-data/fdo_data.h
3-
- libfdo-data/libfdo-data-go.doc
1+
"possible stability impact":
2+
- changed-files:
3+
- any-glob-to-any-file: "libfdo-data/fdo_data.h"
4+
- any-glob-to-any-file: "libfdo-data/libfdo-data-go.doc"

.github/spellcheck-ignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ childs
66
ot
77
marshalling
88
te
9+
blacklist
10+
msdos
11+
ro

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
toolchain: stable
8181
components: clippy
82-
- run: cargo clippy -- -D warnings -D clippy::panic -D clippy::todo
82+
- run: cargo clippy -- -D clippy::panic -D clippy::todo
8383

8484
build_and_test:
8585
runs-on: ubuntu-latest

util/src/servers/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pub fn settings_per_device(guid: &str) -> Result<ServiceInfoSettings> {
7070

7171
let path_per_device_store = match settings.device_specific_store_driver {
7272
StoreConfig::Directory { mut path } => {
73-
let file_name = format!("{}.yml", guid);
73+
let file_name = format!("{guid}.yml");
7474
path.push(file_name);
7575
path.to_string_lossy().into_owned()
7676
}

0 commit comments

Comments
 (0)