Skip to content

Commit 766bbbb

Browse files
committed
Configure tools to exclude folders containing generated files
1 parent b1212ed commit 766bbbb

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
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: 1 addition & 0 deletions
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
22
/.licenses/
3+
/site/
34
__pycache__/
45
node_modules/
56
/other/clang-format-configuration/testdata/golden/samples/
Lines changed: 1 addition & 0 deletions
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
22
/.licenses/
3+
/site/
34
__pycache__/
45
node_modules/

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)