diff --git a/.gitignore b/.gitignore index 80cc315..8f53171 100644 --- a/.gitignore +++ b/.gitignore @@ -162,5 +162,8 @@ cython_debug/ # VSCode .vscode/ +# hatch virtualenvs +.hatch/ + # Custom env .env.wtfis \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index f94f1ca..4aec747 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,6 +59,8 @@ disable = true # Hatch default env [tool.hatch.envs.default] dependencies = [ + "bandit", + "flake8>=6.0.0", "freezegun", "mypy", "pytest", @@ -81,7 +83,7 @@ python = ["38", "39", "310"] # Hatch lint env [tool.hatch.envs.lint] detached = true -dependencies = [ +dependencies = [ # Make sure the respective versions are synced with default! "bandit", "flake8>=6.0.0", ]