Fix markdown indentation. #36
Annotations
8 warnings
|
this `let...else` may be rewritten with the `?` operator:
src/path.rs#L186
warning: this `let...else` may be rewritten with the `?` operator
--> src/path.rs:186:9
|
186 | / let Some(filename) = self.filename() else {
187 | | return None;
188 | | };
| |__________^ help: replace it with: `let filename = self.filename()?;`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#question_mark
|
|
this `let...else` may be rewritten with the `?` operator:
src/path.rs#L167
warning: this `let...else` may be rewritten with the `?` operator
--> src/path.rs:167:9
|
167 | / let Some(drive_path) = self.drive_path() else {
168 | | return None;
169 | | };
| |__________^ help: replace it with: `let drive_path = self.drive_path()?;`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#question_mark
|
|
this `let...else` may be rewritten with the `?` operator:
src/path.rs#L146
warning: this `let...else` may be rewritten with the `?` operator
--> src/path.rs:146:9
|
146 | / let Some(drive_path) = self.drive_path() else {
147 | | return None;
148 | | };
| |__________^ help: replace it with: `let drive_path = self.drive_path()?;`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#question_mark
= note: `#[warn(clippy::question_mark)]` on by default
|
|
format-check
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
|
format-check
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/
|
|
format-check
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/
|
|
format-check
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/
|
|
format-check
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/
|