Skip to content

Commit 0d45efc

Browse files
committed
Expand ignored path configurations
In order to avoid spurious results and to improve efficiency, automatically generated or externally maintained files should be excluded from automated processes. The coverage of ignore configurations is hereby expanded to cover more paths containing such files.
1 parent d43d267 commit 0d45efc

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

.codespellrc

+1-1
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 = ot,porperties,propert
6-
skip = ./.git,./.licenses,**/go.mod,**/go.sum,./package-lock.json,./poetry.lock,./yarn.lock,./arduino-lint,./arduino-lint.exe,./internal/rule/rulefunction/testdata/libraries/MisspelledSentenceParagraphValue/library.properties,./site
6+
skip = ./.git,./.licenses,**/go.mod,**/go.sum,__pycache__,./package-lock.json,./poetry.lock,./yarn.lock,./arduino-lint,./arduino-lint.exe,./internal/rule/rulefunction/testdata/libraries/MisspelledSentenceParagraphValue/library.properties,./site
77
builtin = clear,informal,en-GB_to_en-US
88
check-filenames =
99
check-hidden =

.ecrc

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"Exclude": [
3+
"^\\.git[/\\\\]",
4+
"__pycache__[/\\\\]",
35
"^LICENSE\\.txt$",
46
"^poetry\\.lock$",
57
"^\\.licenses/",

.markdownlintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-markdown/.markdownlintignore
2+
.licenses/
3+
__pycache__/

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
# Generated files
88
/.licenses/
9+
__pycache__/
910

1011
# Test files
1112
/internal/rule/schema/testdata/input/invalid-schema.json

0 commit comments

Comments
 (0)