Disable typos checker for the target feature names

This commit is contained in:
Chayim Refael Friedman
2025-02-25 05:00:49 +02:00
parent d5a85af7c0
commit 5c654dcb46
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -18,6 +18,8 @@ extend-ignore-re = [
"INOUT",
"optin",
"=Pn",
# ignore `// spellchecker:off` until `// spellchecker:on`
"(?s)(#|//)\\s*spellchecker:off.*?\\n\\s*(#|//)\\s*spellchecker:on",
]
[default.extend-words]
@@ -77,6 +77,7 @@ pub(crate) fn from_attrs_no_implications(attrs: &Attrs) -> Self {
result
});
// spellchecker:off
const TARGET_FEATURE_IMPLICATIONS_RAW: &[(&str, &[&str])] = &[
// Arm
("aes", &["neon"]),
@@ -257,3 +258,4 @@ pub(crate) fn from_attrs_no_implications(attrs: &Attrs) -> Self {
("isa-68060", &["isa-68040"]),
("isa-68882", &["isa-68881"]),
];
// spellchecker:on