Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Update ignores for python tools
Browse files Browse the repository at this point in the history
  • Loading branch information
amues committed Aug 8, 2022
1 parent aeb798c commit e3af1b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ builders = pipeline_builder.createBuilders { container ->
cd ${project}
export LC_ALL=en_US.utf-8
export LANG=en_US.utf-8
build_env/bin/python -m black --exclude build_env,definitions,nx-class-documentation .
build_env/bin/python -m black --extend-exclude (build_env|definitions|nx-class-documentation) .
git config user.email '[email protected]'
git config user.name 'cow-bot'
git status -s
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[flake8]
exclude = .git,venv,build_env,build,README.md,ui,definitions
exclude = .git,venv,build_env,build,README.md,ui,definitions,nx-class-documentation
max-line-length = 119
ignore = E501, E203, E402, W503, Q000, W293, E266, E123, C901
# E501 & E203: Formatting handled by Black
Expand All @@ -16,7 +16,7 @@ per-file-ignores =
tests/*:E402,F821

[isort]
skip = ui,definitions
skip = ui,definitions,nx-class-documentation

[tool:pytest]
addopts = -s
Expand Down

0 comments on commit e3af1b5

Please sign in to comment.