Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

[flake8]
doctests = True
exclude =
__pycache__/
.git/
/.licenses/
/site/
node_modules/
# W503 and W504 are mutually exclusive. PEP 8 recommends line break before.
ignore = W503
max-complexity = 10
Expand Down
3 changes: 2 additions & 1 deletion .markdownlintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-markdown/.markdownlintignore
.licenses/
/.licenses/
/site/
__pycache__/
node_modules/
/other/clang-format-configuration/testdata/golden/samples/
Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.licenses/
/.licenses/
__pycache__/
node_modules/
/other/clang-format-configuration/testdata/golden/samples/
Expand Down
3 changes: 2 additions & 1 deletion workflow-templates/assets/check-markdown/.markdownlintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-markdown/.markdownlintignore
.licenses/
/.licenses/
/site/
__pycache__/
node_modules/
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.licenses/
/.licenses/
__pycache__/
node_modules/
poetry.lock
6 changes: 6 additions & 0 deletions workflow-templates/assets/check-python/.flake8
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

[flake8]
doctests = True
exclude =
__pycache__/
.git/
/.licenses/
/site/
node_modules/
# W503 and W504 are mutually exclusive. PEP 8 recommends line break before.
ignore = W503
max-complexity = 10
Expand Down
Loading