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.
2 parents 7436548 + 544f5bc commit 22f6b90Copy full SHA for 22f6b90
crates/typos-cli/src/file_type_specifics.rs
@@ -7,6 +7,15 @@
7
pub(crate) const NO_CHECK_TYPES: &[&str] = &["cert", "lock"];
8
9
pub(crate) const TYPE_SPECIFIC_DICTS: &[(&str, StaticDictConfig)] = &[
10
+ (
11
+ "bitbake",
12
+ StaticDictConfig {
13
+ ignore_idents: &[],
14
+ ignore_words: &[
15
+ "PN", // Package Name variable
16
+ ],
17
+ },
18
+ ),
19
(
20
"cpp",
21
StaticDictConfig {
crates/typos-cli/tests/cmd/false-positives.in/foo.bb
@@ -0,0 +1 @@
1
+LICENSE:${PN} = "GPL-2.0.only"; FOO:pn-myrecipe = "myrecipe-specific value"
0 commit comments