Skip to content

Commit f1d8424

Browse files
authored
Merge pull request #657 from per1234/ignore
Improve tool path ignore configuration
2 parents 93724de + 766bbbb commit f1d8424

File tree

6 files changed

+18
-4
lines changed

6 files changed

+18
-4
lines changed

.flake8

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55

66
[flake8]
77
doctests = True
8+
exclude =
9+
__pycache__/
10+
.git/
11+
/.licenses/
12+
/site/
13+
node_modules/
814
# W503 and W504 are mutually exclusive. PEP 8 recommends line break before.
915
ignore = W503
1016
max-complexity = 10

.markdownlintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-markdown/.markdownlintignore
2-
.licenses/
2+
/.licenses/
3+
/site/
34
__pycache__/
45
node_modules/
56
/other/clang-format-configuration/testdata/golden/samples/

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.licenses/
1+
/.licenses/
22
__pycache__/
33
node_modules/
44
/other/clang-format-configuration/testdata/golden/samples/
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-markdown/.markdownlintignore
2-
.licenses/
2+
/.licenses/
3+
/site/
34
__pycache__/
45
node_modules/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.licenses/
1+
/.licenses/
22
__pycache__/
33
node_modules/
44
poetry.lock

workflow-templates/assets/check-python/.flake8

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55

66
[flake8]
77
doctests = True
8+
exclude =
9+
__pycache__/
10+
.git/
11+
/.licenses/
12+
/site/
13+
node_modules/
814
# W503 and W504 are mutually exclusive. PEP 8 recommends line break before.
915
ignore = W503
1016
max-complexity = 10

0 commit comments

Comments
 (0)