2021-03-15 19:55:45 -05:00
|
|
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
2021-07-09 08:06:12 -05:00
|
|
|
|
use clippy_utils::is_lint_allowed;
|
2021-03-14 18:17:44 -05:00
|
|
|
|
use clippy_utils::source::snippet;
|
2020-02-29 21:23:33 -06:00
|
|
|
|
use rustc_ast::ast::LitKind;
|
2019-05-20 08:23:38 -05:00
|
|
|
|
use rustc_errors::Applicability;
|
2020-02-21 02:39:38 -06:00
|
|
|
|
use rustc_hir::{Expr, ExprKind, HirId};
|
2020-01-12 00:08:41 -06:00
|
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-04 04:00:00 -06:00
|
|
|
|
use rustc_span::source_map::Span;
|
2018-11-27 14:14:15 -06:00
|
|
|
|
use unicode_normalization::UnicodeNormalization;
|
2015-06-11 04:35:00 -05:00
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### What it does
|
|
|
|
|
/// Checks for invisible Unicode characters in the code.
|
2019-03-05 10:50:33 -06:00
|
|
|
|
///
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### Why is this bad?
|
|
|
|
|
/// Having an invisible character in the code makes for all
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// sorts of April fools, but otherwise is very much frowned upon.
|
|
|
|
|
///
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### Example
|
|
|
|
|
/// You don't see it, but there may be a zero-width space or soft hyphen
|
2020-10-02 04:54:31 -05:00
|
|
|
|
/// somewhere in this text.
|
Added `clippy::version` attribute to all normal lints
So, some context for this, well, more a story. I'm not used to scripting, I've never really scripted anything, even if it's a valuable skill. I just never really needed it. Now, `@flip1995` correctly suggested using a script for this in `rust-clippy#7813`...
And I decided to write a script using nushell because why not? This was a mistake... I spend way more time on this than I would like to admit. It has definitely been more than 4 hours. It shouldn't take that long, but me being new to scripting and nushell just wasn't a good mixture... Anyway, here is the script that creates another script which adds the versions. Fun...
Just execute this on the `gh-pages` branch and the resulting `replacer.sh` in `clippy_lints` and it should all work.
```nu
mv v0.0.212 rust-1.00.0;
mv beta rust-1.57.0;
mv master rust-1.58.0;
let paths = (open ./rust-1.58.0/lints.json | select id id_span | flatten | select id path);
let versions = (
ls | where name =~ "rust-" | select name | format {name}/lints.json |
each { open $it | select id | insert version $it | str substring "5,11" version} |
group-by id | rotate counter-clockwise id version |
update version {get version | first 1} | flatten | select id version);
$paths | each { |row|
let version = ($versions | where id == ($row.id) | format {version})
let idu = ($row.id | str upcase)
$"sed -i '0,/($idu),/{s/pub ($idu),/#[clippy::version = "($version)"]\n pub ($idu),/}' ($row.path)"
} | str collect ";" | str find-replace --all '1.00.0' 'pre 1.29.0' | save "replacer.sh";
```
And this still has some problems, but at this point I just want to be done -.-
2021-10-21 14:06:26 -05:00
|
|
|
|
#[clippy::version = "1.49.0"]
|
2020-10-02 17:03:33 -05:00
|
|
|
|
pub INVISIBLE_CHARACTERS,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
correctness,
|
2020-10-02 04:54:31 -05:00
|
|
|
|
"using an invisible character in a string literal, which is confusing"
|
2016-02-05 17:13:29 -06:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### What it does
|
2021-11-26 04:27:14 -06:00
|
|
|
|
/// Checks for non-ASCII characters in string and char literals.
|
2019-03-05 10:50:33 -06:00
|
|
|
|
///
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### Why is this bad?
|
|
|
|
|
/// Yeah, we know, the 90's called and wanted their charset
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// back. Even so, there still are editors and other programs out there that
|
|
|
|
|
/// don't work well with Unicode. So if the code is meant to be used
|
|
|
|
|
/// internationally, on multiple operating systems, or has other portability
|
|
|
|
|
/// requirements, activating this lint could be useful.
|
|
|
|
|
///
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### Example
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// ```rust
|
2019-05-20 08:08:53 -05:00
|
|
|
|
/// let x = String::from("€");
|
|
|
|
|
/// ```
|
|
|
|
|
/// Could be written as:
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let x = String::from("\u{20ac}");
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// ```
|
Added `clippy::version` attribute to all normal lints
So, some context for this, well, more a story. I'm not used to scripting, I've never really scripted anything, even if it's a valuable skill. I just never really needed it. Now, `@flip1995` correctly suggested using a script for this in `rust-clippy#7813`...
And I decided to write a script using nushell because why not? This was a mistake... I spend way more time on this than I would like to admit. It has definitely been more than 4 hours. It shouldn't take that long, but me being new to scripting and nushell just wasn't a good mixture... Anyway, here is the script that creates another script which adds the versions. Fun...
Just execute this on the `gh-pages` branch and the resulting `replacer.sh` in `clippy_lints` and it should all work.
```nu
mv v0.0.212 rust-1.00.0;
mv beta rust-1.57.0;
mv master rust-1.58.0;
let paths = (open ./rust-1.58.0/lints.json | select id id_span | flatten | select id path);
let versions = (
ls | where name =~ "rust-" | select name | format {name}/lints.json |
each { open $it | select id | insert version $it | str substring "5,11" version} |
group-by id | rotate counter-clockwise id version |
update version {get version | first 1} | flatten | select id version);
$paths | each { |row|
let version = ($versions | where id == ($row.id) | format {version})
let idu = ($row.id | str upcase)
$"sed -i '0,/($idu),/{s/pub ($idu),/#[clippy::version = "($version)"]\n pub ($idu),/}' ($row.path)"
} | str collect ";" | str find-replace --all '1.00.0' 'pre 1.29.0' | save "replacer.sh";
```
And this still has some problems, but at this point I just want to be done -.-
2021-10-21 14:06:26 -05:00
|
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2018-11-27 14:49:09 -06:00
|
|
|
|
pub NON_ASCII_LITERAL,
|
2021-10-31 07:25:53 -05:00
|
|
|
|
restriction,
|
2018-11-27 14:49:09 -06:00
|
|
|
|
"using any literal non-ASCII chars in a string literal instead of using the `\\u` escape"
|
2016-02-05 17:13:29 -06:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### What it does
|
|
|
|
|
/// Checks for string literals that contain Unicode in a form
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// that is not equal to its
|
|
|
|
|
/// [NFC-recomposition](http://www.unicode.org/reports/tr15/#Norm_Forms).
|
|
|
|
|
///
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### Why is this bad?
|
|
|
|
|
/// If such a string is compared to another, the results
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// may be surprising.
|
|
|
|
|
///
|
2021-07-02 13:37:11 -05:00
|
|
|
|
/// ### Example
|
|
|
|
|
/// You may not see it, but "à"" and "à"" aren't the same string. The
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// former when escaped is actually `"a\u{300}"` while the latter is `"\u{e0}"`.
|
Added `clippy::version` attribute to all normal lints
So, some context for this, well, more a story. I'm not used to scripting, I've never really scripted anything, even if it's a valuable skill. I just never really needed it. Now, `@flip1995` correctly suggested using a script for this in `rust-clippy#7813`...
And I decided to write a script using nushell because why not? This was a mistake... I spend way more time on this than I would like to admit. It has definitely been more than 4 hours. It shouldn't take that long, but me being new to scripting and nushell just wasn't a good mixture... Anyway, here is the script that creates another script which adds the versions. Fun...
Just execute this on the `gh-pages` branch and the resulting `replacer.sh` in `clippy_lints` and it should all work.
```nu
mv v0.0.212 rust-1.00.0;
mv beta rust-1.57.0;
mv master rust-1.58.0;
let paths = (open ./rust-1.58.0/lints.json | select id id_span | flatten | select id path);
let versions = (
ls | where name =~ "rust-" | select name | format {name}/lints.json |
each { open $it | select id | insert version $it | str substring "5,11" version} |
group-by id | rotate counter-clockwise id version |
update version {get version | first 1} | flatten | select id version);
$paths | each { |row|
let version = ($versions | where id == ($row.id) | format {version})
let idu = ($row.id | str upcase)
$"sed -i '0,/($idu),/{s/pub ($idu),/#[clippy::version = "($version)"]\n pub ($idu),/}' ($row.path)"
} | str collect ";" | str find-replace --all '1.00.0' 'pre 1.29.0' | save "replacer.sh";
```
And this still has some problems, but at this point I just want to be done -.-
2021-10-21 14:06:26 -05:00
|
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2018-11-27 14:49:09 -06:00
|
|
|
|
pub UNICODE_NOT_NFC,
|
|
|
|
|
pedantic,
|
2019-08-23 00:42:45 -05:00
|
|
|
|
"using a Unicode literal not in NFC normal form (see [Unicode tr15](http://www.unicode.org/reports/tr15/) for further information)"
|
2016-02-05 17:13:29 -06:00
|
|
|
|
}
|
2015-09-04 02:08:07 -05:00
|
|
|
|
|
2020-10-02 17:03:33 -05:00
|
|
|
|
declare_lint_pass!(Unicode => [INVISIBLE_CHARACTERS, NON_ASCII_LITERAL, UNICODE_NOT_NFC]);
|
2015-08-11 13:22:20 -05:00
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
impl LateLintPass<'_> for Unicode {
|
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'_>, expr: &'_ Expr<'_>) {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let ExprKind::Lit(ref lit) = expr.kind {
|
2021-11-26 03:49:14 -06:00
|
|
|
|
if let LitKind::Str(_, _) | LitKind::Char(_) = lit.node {
|
2021-05-24 20:46:33 -05:00
|
|
|
|
check_str(cx, lit.span, expr.hir_id);
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-06-11 04:35:00 -05:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
|
fn escape<T: Iterator<Item = char>>(s: T) -> String {
|
2015-09-04 02:08:07 -05:00
|
|
|
|
let mut result = String::new();
|
|
|
|
|
for c in s {
|
2015-08-12 13:36:10 -05:00
|
|
|
|
if c as u32 > 0x7F {
|
2016-01-03 22:26:12 -06:00
|
|
|
|
for d in c.escape_unicode() {
|
2021-05-24 20:46:33 -05:00
|
|
|
|
result.push(d);
|
2016-01-03 22:26:12 -06:00
|
|
|
|
}
|
2015-09-04 02:08:07 -05:00
|
|
|
|
} else {
|
|
|
|
|
result.push(c);
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-09-04 02:08:07 -05:00
|
|
|
|
result
|
2015-06-11 04:35:00 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn check_str(cx: &LateContext<'_>, span: Span, id: HirId) {
|
2015-09-04 07:24:49 -05:00
|
|
|
|
let string = snippet(cx, span, "");
|
2020-10-02 17:07:56 -05:00
|
|
|
|
if string.chars().any(|c| ['\u{200B}', '\u{ad}', '\u{2060}'].contains(&c)) {
|
2019-05-20 09:02:50 -05:00
|
|
|
|
span_lint_and_sugg(
|
2017-08-09 02:30:56 -05:00
|
|
|
|
cx,
|
2020-10-02 17:03:33 -05:00
|
|
|
|
INVISIBLE_CHARACTERS,
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span,
|
2020-10-02 17:03:33 -05:00
|
|
|
|
"invisible character detected",
|
2019-05-20 09:02:50 -05:00
|
|
|
|
"consider replacing the string with",
|
2020-10-02 17:07:56 -05:00
|
|
|
|
string
|
2021-12-05 14:50:05 -06:00
|
|
|
|
.replace('\u{200B}', "\\u{200B}")
|
|
|
|
|
.replace('\u{ad}', "\\u{AD}")
|
|
|
|
|
.replace('\u{2060}', "\\u{2060}"),
|
2019-05-20 09:02:50 -05:00
|
|
|
|
Applicability::MachineApplicable,
|
2017-08-09 02:30:56 -05:00
|
|
|
|
);
|
2015-09-04 02:08:07 -05:00
|
|
|
|
}
|
|
|
|
|
if string.chars().any(|c| c as u32 > 0x7F) {
|
2019-05-20 08:23:38 -05:00
|
|
|
|
span_lint_and_sugg(
|
2017-08-09 02:30:56 -05:00
|
|
|
|
cx,
|
|
|
|
|
NON_ASCII_LITERAL,
|
|
|
|
|
span,
|
|
|
|
|
"literal non-ASCII character detected",
|
2019-05-20 09:02:50 -05:00
|
|
|
|
"consider replacing the string with",
|
2021-07-09 08:06:12 -05:00
|
|
|
|
if is_lint_allowed(cx, UNICODE_NOT_NFC, id) {
|
2019-05-20 09:02:50 -05:00
|
|
|
|
escape(string.chars())
|
|
|
|
|
} else {
|
|
|
|
|
escape(string.nfc())
|
|
|
|
|
},
|
2019-05-20 08:23:38 -05:00
|
|
|
|
Applicability::MachineApplicable,
|
2017-08-09 02:30:56 -05:00
|
|
|
|
);
|
2015-09-04 02:08:07 -05:00
|
|
|
|
}
|
2021-07-09 08:06:12 -05:00
|
|
|
|
if is_lint_allowed(cx, NON_ASCII_LITERAL, id) && string.chars().zip(string.nfc()).any(|(a, b)| a != b) {
|
2019-05-20 09:02:50 -05:00
|
|
|
|
span_lint_and_sugg(
|
2017-08-09 02:30:56 -05:00
|
|
|
|
cx,
|
|
|
|
|
UNICODE_NOT_NFC,
|
|
|
|
|
span,
|
2019-08-23 00:42:45 -05:00
|
|
|
|
"non-NFC Unicode sequence detected",
|
2019-05-20 09:02:50 -05:00
|
|
|
|
"consider replacing the string with",
|
|
|
|
|
string.nfc().collect::<String>(),
|
|
|
|
|
Applicability::MachineApplicable,
|
2017-08-09 02:30:56 -05:00
|
|
|
|
);
|
2015-09-04 02:08:07 -05:00
|
|
|
|
}
|
2015-06-11 04:35:00 -05:00
|
|
|
|
}
|