We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9367bb1 commit 9e4d1bcCopy full SHA for 9e4d1bc
1 file changed
Mathlib/Tactic/Linter/TextBased/UnicodeLinter.lean
@@ -183,11 +183,6 @@ public def emojis : Array Char := #[
183
.ofNat 0x1F3C1 -- 🏁️
184
]
185
186
-/-- Unicode symbols in mathlib that have no restrictions on which selector they are followed by. -/
187
-public def maybeEmojis : Array Char := #[
188
- '⚠' -- ⚠️
189
-]
190
-
191
/-- Unicode symbols in mathlib that should always be followed by the text variant selector. -/
192
public def nonEmojis : Array Char := #[]
193
@@ -215,7 +210,6 @@ public def isAllowedCharacter (c : Char) : Bool :=
215
210
|| withVSCodeAbbrev.contains c
216
211
|| othersInMathlib.contains c
217
212
|| emojis.contains c
218
- || maybeEmojis.contains c
219
213
|| nonEmojis.contains c
220
214
|| unrestricted.contains c
221
|| c == UnicodeVariant.emoji
0 commit comments