Bump actions/checkout from 3 to 4 #37
GitHub Actions / clippy
failed
Nov 15, 2023 in 0s
clippy
4 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 4 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.73.0 (cc66ad468 2023-10-03)
- cargo 1.73.0 (9c4383fb5 2023-08-26)
- clippy 0.1.73 (cc66ad4 2023-10-03)
Annotations
Check failure on line 208 in src/lib.rs
github-actions / clippy
unnecessary hashes around raw string literal
error: unnecessary hashes around raw string literal
--> src/lib.rs:208:23
|
208 | .replace(':', r#"\:"#)
| ^^^^^^^ help: try: `r"\:"`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
Check failure on line 207 in src/lib.rs
github-actions / clippy
unnecessary hashes around raw string literal
error: unnecessary hashes around raw string literal
--> src/lib.rs:207:23
|
207 | .replace(',', r#"\,"#)
| ^^^^^^^ help: try: `r"\,"`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
Check failure on line 206 in src/lib.rs
github-actions / clippy
unnecessary hashes around raw string literal
error: unnecessary hashes around raw string literal
--> src/lib.rs:206:23
|
206 | .replace(';', r#"\;"#)
| ^^^^^^^ help: try: `r"\;"`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
Check failure on line 204 in src/lib.rs
github-actions / clippy
unnecessary hashes around raw string literal
error: unnecessary hashes around raw string literal
--> src/lib.rs:204:24
|
204 | .replace('\\', r#"\\"#)
| ^^^^^^^ help: try: `r"\\"`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
note: the lint level is defined here
--> src/lib.rs:1:9
|
1 | #![deny(clippy::all)]
| ^^^^^^^^^^^
= note: `#[deny(clippy::needless_raw_string_hashes)]` implied by `#[deny(clippy::all)]`
Loading