Skip to content

Commit

Permalink
♻️ pyproject update
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Oct 10, 2023
1 parent d7761b8 commit f7d214f
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ pyparsing = "^3.0.9"


[tool.poetry.group.dev.dependencies]
python-semantic-release = "^8.0.7"
ruff = "*"
python-semantic-release = ">=8.0.8"
ruff = "^0.0.265"
black = "^23.3.0"
pre-commit = "^3.3.1"

[tool.ruff]
select = [
Expand All @@ -43,8 +45,7 @@ exclude = [
".github/*",
"docs/*",
]
#ignore = ["E401","F401","F811"]
#format = "github"

fixable = ["ALL"]

[tool.pylint.exceptions]
Expand Down Expand Up @@ -97,6 +98,12 @@ omit = [
"*/config.py"
]

[tool.bandit]
exclude_dirs = ["tests","docs"]

[tool.bandit.assert_used]
skips = ["*_test.py", "test_*.py"]

[tool.semantic_release]
upload_to_vcs_release = true
version_variables = ["findmyorder/__init__.py:__version__"]
Expand Down

0 comments on commit f7d214f

Please sign in to comment.