Disable typos checker for the target feature names
This commit is contained in:
parent
d5a85af7c0
commit
5c654dcb46
2 changed files with 4 additions and 0 deletions
|
@ -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 @@ static TARGET_FEATURE_IMPLICATIONS: LazyLock<FxHashMap<Symbol, Box<[Symbol]>>> =
|
|||
result
|
||||
});
|
||||
|
||||
// spellchecker:off
|
||||
const TARGET_FEATURE_IMPLICATIONS_RAW: &[(&str, &[&str])] = &[
|
||||
// Arm
|
||||
("aes", &["neon"]),
|
||||
|
@ -257,3 +258,4 @@ const TARGET_FEATURE_IMPLICATIONS_RAW: &[(&str, &[&str])] = &[
|
|||
("isa-68060", &["isa-68040"]),
|
||||
("isa-68882", &["isa-68881"]),
|
||||
];
|
||||
// spellchecker:on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue