feat: New Release #333
lint-pr.yml
on: pull_request_target
Validate PR title
3s
Annotations
2 errors
this match arm has an identical body to another arm:
pragma-node/src/utils/sql.rs#L8
error: this match arm has an identical body to another arm
--> pragma-node/src/utils/sql.rs:8:9
|
8 | DataType::FutureEntry => Ok("_future"),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: try changing either arm body
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms
= note: `-D clippy::match-same-arms` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::match_same_arms)]`
help: or try merging the arm patterns and removing the obsolete arm
|
8 ~ DataType::FutureEntry | DataType::PerpEntry => Ok("_future"),
9 ~ }
|
|
this match arm has an identical body to another arm:
pragma-node/src/utils/sql.rs#L8
error: this match arm has an identical body to another arm
--> pragma-node/src/utils/sql.rs:8:9
|
8 | DataType::FutureEntry => Ok("_future"),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: try changing either arm body
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms
= note: `-D clippy::match-same-arms` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::match_same_arms)]`
help: or try merging the arm patterns and removing the obsolete arm
|
8 ~ DataType::FutureEntry | DataType::PerpEntry => Ok("_future"),
9 ~ }
|
|