-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2392ce3
commit 55882fb
Showing
9 changed files
with
262 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "parsett" | ||
version = "0.2.4" | ||
version = "0.2.5" | ||
description = "PTT" | ||
authors = ["Dreu LaVelle <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -20,6 +20,7 @@ pytest-cov = "^5.0.0" | |
codecov = "^2.1.13" | ||
coverage = "^7.4.4" | ||
|
||
black = "^24.4.2" | ||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
@@ -75,33 +76,3 @@ exclude = ''' | |
| tests | ||
)/ | ||
''' | ||
|
||
[tool.ruff.lint] | ||
# https://docs.astral.sh/ruff/rules/ | ||
ignore = [ | ||
"PLR0913", # flask8-bugbear: Too many arguments for a method or function | ||
"PLR0911", # flask8-bugbear: Too many return statements | ||
"PLR2004", # flake8-bugbear: Magic value used in comparison | ||
"S104", # flake8-bandit: Possible binding to all interfaces | ||
"S108", # flake8-bandit: Probable insecure usage of temp file/directory | ||
"S311", # flake8-bandit: Standard pseudo-random generators are not suitable for security/cryptographic purposes | ||
"S101", # ruff: Ignore assert warnings on tests | ||
"RET505", # ruff: Checks for else statements with a return statement in the preceding if block. | ||
"RET503" # ruff: Ignore required explicit returns | ||
] | ||
extend-select = [ | ||
"I", # isort | ||
"C90", # mccabe complexity | ||
"B", # flake8-bugbear | ||
"PL", # pycodestyle | ||
"S", # flake8-bandit | ||
"T10", # flake8-debugger | ||
"PIE", # flake8-pie | ||
"T20", # flake8-print | ||
"Q", # flake8-quotes | ||
"RSE", # flake8-raise | ||
"RET", # flake8-return | ||
"SLF", # flake8-self | ||
"SIM", # flake8-simplify | ||
"ARG", # flake8-unused-arguments | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.