Skip to content

Commit 6ac92ce

Browse files
authored
Merge pull request #21 from per1234/fix-spell-check
Exclude published RFCs from automated checks
2 parents 8c1a991 + 6c90bdd commit 6ac92ce

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

.codespellrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[codespell]
44
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
55
ignore-words-list = ,
6-
skip = ./.git,./go.mod,./go.sum,./package-lock.json,./poetry.lock,./yarn.lock
6+
skip = ./.git,./go.mod,./go.sum,./package-lock.json,./poetry.lock,./yarn.lock,./RFCs/0002-pluggable-discovery.md,./RFCs/0003-build-profiles.md,./RFCs/0004-pluggable-monitor.md
77
builtin = clear,informal,en-GB_to_en-US
88
check-filenames =
99
check-hidden =

.ecrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"Exclude": [
33
"^LICENSE\\.txt$",
4-
"^poetry\\.lock$"
4+
"^poetry\\.lock$",
5+
"^RFCs/0002-pluggable-discovery.md",
6+
"^RFCs/0003-build-profiles.md",
7+
"^RFCs/0004-pluggable-monitor.md"
58
]
69
}

.markdownlintignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-markdown/.markdownlintignore
2+
.licenses/
3+
__pycache__/
4+
node_modules/
5+
/RFCs/0002-pluggable-discovery.md
6+
/RFCs/0003-build-profiles.md
7+
/RFCs/0004-pluggable-monitor.md

.prettierignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.licenses/
2+
__pycache__/
3+
node_modules/
4+
/RFCs/0002-pluggable-discovery.md
5+
/RFCs/0003-build-profiles.md
6+
/RFCs/0004-pluggable-monitor.md

0 commit comments

Comments
 (0)