rust/clippy_lints
Dharma Saputra Wijaya 1085df58ac Add separated_literal_suffix as an alternative for
`unseparated_literal_suffix`

This commit adds a configuration `literal-suffix-style` to enforce a
specific style for unseparated_literal_suffix. The configuration accepts
two values:
- "separated"
    enforce all literals to be written separately (e.g. `123_i32`)
- "unseparated"
    enforce all literals to be written as unseparated (e.g. `123i32`)

Not specifying a value means that there is no preference on style and
any style should not be warned.
2021-11-01 22:26:13 +08:00
..
src Add separated_literal_suffix as an alternative for 2021-11-01 22:26:13 +08:00
Cargo.toml Merge remote-tracking branch 'upstream/master' into rustup 2021-09-28 10:52:31 +01:00
README.md

This crate contains Clippy lints. For the main crate, check GitHub.