Add frontend theme CSS serialization/deserialization #97
rust-clippy.yml
on: push
Run rust-clippy analysis
1m 42s
Annotations
10 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/family.rs#L6
warning: unused imports: `CURSIVE_STR`, `EMOJI_STR`, `FANGSONG_STR`, `FANTASY_STR`, `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/family.rs:6:14
|
6 | Generic, CURSIVE_STR, EMOJI_STR, FANGSONG_STR, FANTASY_STR, MATH_STR,
| ^^^^^^^^^^^ ^^^^^^^^^ ^^^^^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^
7 | MONOSPACE_STR, SANS_SERIF_STR, SERIF_STR, SYSTEM_UI_STR, UI_MONOSPACE_STR,
| ^^^^^^^^^^^^^ ^^^^^^^^^^^^^^ ^^^^^^^^^ ^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^
8 | UI_ROUNDED_STR, UI_SANS_SERIF_STR, 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:
common/src/settings/theme/font_weight.rs#L24
warning: unused variable: `value`
--> common/src/settings/theme/font_weight.rs:24:17
|
24 | fn try_from(value: &'a str) -> Result<Self, Self::Error> {
| ^^^^^ help: if this is intentional, prefix it with an underscore: `_value`
|
= note: `#[warn(unused_variables)]` on by default
|
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
|