Skip to content

Commit b7bda5c

Browse files
authored
Merge pull request #139 from per1234/ec-exclude
Make editorconfig-checker exclude regexes explicit
2 parents 8e7ddc5 + e0b0b7b commit b7bda5c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.ecrc

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

Taskfile.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ tasks:
9090
cmds:
9191
- |
9292
cp \
93+
"{{.WORKFLOW_TEMPLATE_ASSETS_PATH}}/check-general-formatting/.ecrc" \
9394
"{{.WORKFLOW_TEMPLATE_ASSETS_PATH}}/general/.editorconfig" \
9495
"{{.WORKFLOW_TEMPLATE_ASSETS_PATH}}/check-python/.flake8" \
9596
"{{.WORKFLOW_TEMPLATE_ASSETS_PATH}}/check-markdown/.markdownlint.yml" \
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Exclude": [
3-
"LICENSE.txt",
4-
"poetry.lock"
3+
"^LICENSE\\.txt$",
4+
"^poetry\\.lock$"
55
]
66
}

0 commit comments

Comments
 (0)