Skip to content

Commit

Permalink
- Introduced exclusion logic for black and pylint tools.
Browse files Browse the repository at this point in the history
- The directoty tests will be ignored.
  • Loading branch information
miroslavpojer committed Oct 11, 2024
1 parent b9b4b70 commit 3deca0e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@ unsafe-load-any-extension=no
#verbose=


[MASTER]

ignore-paths=tests


[BASIC]

# Naming style matching correct argument names.
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[tool.black]
line-length = 120
target-version = ['py311']
force-exclude = '''test'''

[tool.coverage.run]
omit = ["tests/*"]

0 comments on commit 3deca0e

Please sign in to comment.