Skip to content

Commit ed5445c

Browse files
committed
Expand the list of CI ignored files
Files that contain purely generated content should never be checked by the CI system for human errors. Even though these are not relevant to this specific repository, the file is intended to be applicable to any project, so a full list of such files is provided.
1 parent a259c85 commit ed5445c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.codespellrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[codespell]
33
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
44
ignore-words-list = ,
5-
skip = ./.git
5+
skip = ./.git,./go.mod,./go.sum,./package-lock.json,./poetry.lock,./yarn.lock
66
builtin = clear,informal,en-GB_to_en-US
77
check-filenames =
88
check-hidden =

.ecrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"Exclude": ["^LICENSE\\.txt$"]
2+
"Exclude": [
3+
"^LICENSE\\.txt$",
4+
"^poetry\\.lock$"
5+
]
36
}

0 commit comments

Comments
 (0)