Finish CSS parser impl (font families, weights) #98
rust-clippy.yml
on: push
Run rust-clippy analysis
1m 41s
Annotations
9 warnings
Run rust-clippy analysis
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Run rust-clippy analysis
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Run rust-clippy analysis
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Run rust-clippy analysis
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Run rust-clippy analysis
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
Run rust-clippy analysis:
common/src/settings/theme/font_families.rs#L5
warning: unused imports: `CURSIVE_STR`, `Custom`, `EMOJI_STR`, `FANGSONG_STR`, `FANTASY_STR`, `Generic`, `MATH_STR`, `MONOSPACE_STR`, `SANS_SERIF_STR`, `SERIF_STR`, `SYSTEM_UI_STR`, `UI_MONOSPACE_STR`, `UI_ROUNDED_STR`, `UI_SANS_SERIF_STR`, `UI_SERIF_STR`
--> common/src/settings/theme/font_families.rs:5:5
|
5 | Custom, FontFamily, Generic, CURSIVE_STR, EMOJI_STR, FANGSONG_STR,
| ^^^^^^ ^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^^ ^^^^^^^^^^^^
6 | FANTASY_STR, MATH_STR, MONOSPACE_STR, SANS_SERIF_STR, SERIF_STR,
| ^^^^^^^^^^^ ^^^^^^^^ ^^^^^^^^^^^^^ ^^^^^^^^^^^^^^ ^^^^^^^^^
7 | SYSTEM_UI_STR, UI_MONOSPACE_STR, UI_ROUNDED_STR, UI_SANS_SERIF_STR,
| ^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^
8 | UI_SERIF_STR,
| ^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
|
Run rust-clippy analysis:
common/src/settings/theme/font_weight.rs#L7
warning: unused imports: `BOLD_STR`, `NORMAL_STR`
--> common/src/settings/theme/font_weight.rs:7:27
|
7 | pub use absolute_weight::{BOLD_STR, NORMAL_STR};
| ^^^^^^^^ ^^^^^^^^^^
|
Run rust-clippy analysis:
common/src/settings/theme/font_weight.rs#L8
warning: unused imports: `BOLDER_STR`, `LIGHTER_STR`
--> common/src/settings/theme/font_weight.rs:8:27
|
8 | pub use relative_weight::{BOLDER_STR, LIGHTER_STR};
| ^^^^^^^^^^ ^^^^^^^^^^^
|
Run rust-clippy analysis:
glue/src/invoke.rs#L31
warning: function `invoke_query_infallible` is never used
--> glue/src/invoke.rs:31:21
|
31 | pub(crate) async fn invoke_query_infallible<T, Args>(
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
|