about summary refs log tree commit diff
path: root/tests/ui/single_char_pattern.rs
AgeCommit message (Collapse)AuthorLines
2019-08-09Add more tests for raw string literalLzu Tao-0/+3
2019-08-09Fix lint_single_char_pattern on raw string literalLzu Tao-0/+4
2019-04-08Escape a single quote in single_char_pattern hintKlemen Košir-0/+2
2019-01-31Rustup: unused trim resultPhilipp Hansch-0/+2
2019-01-08Remove all copyright license headersPhilipp Hansch-9/+0
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
2019-01-04Add run-rustfix where it already passesPhilipp Hansch-0/+2
2018-12-14rustup rust-lang/rust#52994flip1995-2/+2
s/trim_left/trim_start/ s/trim_right/trim_end/
2018-12-09rustfmt testsMatthias Krüger-3/+0
2018-11-22rust-lang-nursery/rust-clippy => rust-lang/rust-clippyMatthias Krüger-1/+1
2018-10-11Stabilize tool lintsOliver Scherer-1/+1
2018-10-06Add license header to Rust filesManish Goregaokar-0/+10
2018-09-24Fix single_char_pattern crash (#3204)Michael Wright-0/+4
This commit fixes the crash by removing constant checking from the lint. Closes #3204.
2018-08-29Adapt ui-tests to the tool_lintsflip1995-1/+3
2018-08-03Fix single_char_pattern lint for escaped charsflip1995-0/+1
2018-07-31single_char_pattern: lint only on the argument spanflip1995-0/+2
2018-03-02Fix single_char_pattern for \n, \t, etc.Bruce Mitchener-0/+2
Single characters that are escaped weren't being searched / replaced correctly in the hint string, so it was saying to replace, say, `"\n"` with `"\n"` rather than `'\n'`.
2017-10-09move single_char_pattern testsCameron Steffen-0/+41