@@ -10,7 +10,6 @@ declare_lint! {
10
10
///
11
11
/// ```rust,compile_fail
12
12
/// # #![allow(unused)]
13
- /// #![feature(non_ascii_idents)]
14
13
/// #![deny(non_ascii_idents)]
15
14
/// fn main() {
16
15
/// let föö = 1;
@@ -21,14 +20,11 @@ declare_lint! {
21
20
///
22
21
/// ### Explanation
23
22
///
24
- /// Currently on stable Rust, identifiers must contain ASCII characters.
25
- /// The [`non_ascii_idents`] nightly-only feature allows identifiers to
26
- /// contain non-ASCII characters. This lint allows projects that wish to
27
- /// retain the limit of only using ASCII characters to switch this lint to
28
- /// "forbid" (for example to ease collaboration or for security reasons).
23
+ /// This lint allows projects that wish to retain the limit of only using
24
+ /// ASCII characters to switch this lint to "forbid" (for example to ease
25
+ /// collaboration or for security reasons).
29
26
/// See [RFC 2457] for more details.
30
27
///
31
- /// [`non_ascii_idents`]: https://doc.rust-lang.org/nightly/unstable-book/language-features/non-ascii-idents.html
32
28
/// [RFC 2457]: https://github.com/rust-lang/rfcs/blob/master/text/2457-non-ascii-idents.md
33
29
pub NON_ASCII_IDENTS ,
34
30
Allow ,
@@ -44,18 +40,15 @@ declare_lint! {
44
40
///
45
41
/// ```rust
46
42
/// # #![allow(unused)]
47
- /// #![feature(non_ascii_idents)]
48
43
/// const µ: f64 = 0.000001;
49
44
/// ```
50
45
///
51
46
/// {{produces}}
52
47
///
53
48
/// ### Explanation
54
49
///
55
- /// With the [`non_ascii_idents`] nightly-only feature enabled,
56
- /// identifiers are allowed to use non-ASCII characters. This lint warns
57
- /// about using characters which are not commonly used, and may cause
58
- /// visual confusion.
50
+ /// This lint warns about using characters which are not commonly used, and may
51
+ /// cause visual confusion.
59
52
///
60
53
/// This lint is triggered by identifiers that contain a codepoint that is
61
54
/// not part of the set of "Allowed" codepoints as described by [Unicode®
@@ -66,7 +59,6 @@ declare_lint! {
66
59
/// that if you "forbid" this lint that existing code may fail in the
67
60
/// future.
68
61
///
69
- /// [`non_ascii_idents`]: https://doc.rust-lang.org/nightly/unstable-book/language-features/non-ascii-idents.html
70
62
/// [TR39Allowed]: https://www.unicode.org/reports/tr39/#General_Security_Profile
71
63
pub UNCOMMON_CODEPOINTS ,
72
64
Warn ,
@@ -81,8 +73,6 @@ declare_lint! {
81
73
/// ### Example
82
74
///
83
75
/// ```rust
84
- /// #![feature(non_ascii_idents)]
85
- ///
86
76
/// // Latin Capital Letter E With Caron
87
77
/// pub const Ě: i32 = 1;
88
78
/// // Latin Capital Letter E With Breve
@@ -93,10 +83,8 @@ declare_lint! {
93
83
///
94
84
/// ### Explanation
95
85
///
96
- /// With the [`non_ascii_idents`] nightly-only feature enabled,
97
- /// identifiers are allowed to use non-ASCII characters. This lint warns
98
- /// when different identifiers may appear visually similar, which can
99
- /// cause confusion.
86
+ /// This lint warns when different identifiers may appear visually similar,
87
+ /// which can cause confusion.
100
88
///
101
89
/// The confusable detection algorithm is based on [Unicode® Technical
102
90
/// Standard #39 Unicode Security Mechanisms Section 4 Confusable
@@ -110,7 +98,6 @@ declare_lint! {
110
98
/// Beware that if you "forbid" this lint that existing code may fail in
111
99
/// the future.
112
100
///
113
- /// [`non_ascii_idents`]: https://doc.rust-lang.org/nightly/unstable-book/language-features/non-ascii-idents.html
114
101
/// [TR39Confusable]: https://www.unicode.org/reports/tr39/#Confusable_Detection
115
102
pub CONFUSABLE_IDENTS ,
116
103
Warn ,
@@ -127,8 +114,6 @@ declare_lint! {
127
114
/// ### Example
128
115
///
129
116
/// ```rust
130
- /// #![feature(non_ascii_idents)]
131
- ///
132
117
/// // The Japanese katakana character エ can be confused with the Han character 工.
133
118
/// const エ: &'static str = "アイウ";
134
119
/// ```
@@ -137,10 +122,8 @@ declare_lint! {
137
122
///
138
123
/// ### Explanation
139
124
///
140
- /// With the [`non_ascii_idents`] nightly-only feature enabled,
141
- /// identifiers are allowed to use non-ASCII characters. This lint warns
142
- /// when characters between different scripts may appear visually similar,
143
- /// which can cause confusion.
125
+ /// This lint warns when characters between different scripts may appear
126
+ /// visually similar, which can cause confusion.
144
127
///
145
128
/// If the crate contains other identifiers in the same script that have
146
129
/// non-confusable characters, then this lint will *not* be issued. For
@@ -152,8 +135,6 @@ declare_lint! {
152
135
/// Note that the set of confusable characters may change over time.
153
136
/// Beware that if you "forbid" this lint that existing code may fail in
154
137
/// the future.
155
- ///
156
- /// [`non_ascii_idents`]: https://doc.rust-lang.org/nightly/unstable-book/language-features/non-ascii-idents.html
157
138
pub MIXED_SCRIPT_CONFUSABLES ,
158
139
Warn ,
159
140
"detects Unicode scripts whose mixed script confusables codepoints are solely used" ,
0 commit comments