From f7d214feccfafa3ccc5474c221973d441abedbbd Mon Sep 17 00:00:00 2001 From: mraniki <8766259+mraniki@users.noreply.github.com> Date: Tue, 10 Oct 2023 20:07:46 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20pyproject=20update?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 04dc0aa..d9f4115 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ @@ -43,8 +45,7 @@ exclude = [ ".github/*", "docs/*", ] -#ignore = ["E401","F401","F811"] -#format = "github" + fixable = ["ALL"] [tool.pylint.exceptions] @@ -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__"]