| 1 | [project] |
| 2 | name = "secure-cicd-pipeline" |
| 3 | version = "0.1.0" |
| 4 | requires-python = ">=3.11" |
| 5 | |
| 6 | [tool.ruff] |
| 7 | line-length = 100 |
| 8 | target-version = "py311" |
| 9 | |
| 10 | [tool.ruff.lint] |
| 11 | select = ["E", "F", "I", "B", "S"] |
| 12 | ignore = ["S101"] |
| 13 | |
| 14 | [tool.ruff.lint.per-file-ignores] |
| 15 | "tests/*" = ["S"] |
| 16 | "scripts/notify_soc.py" = ["S310"] |
| 17 | |
| 18 | [tool.bandit] |
| 19 | exclude_dirs = ["tests"] |
| 20 | |
| 21 | [tool.pytest.ini_options] |
| 22 | pythonpath = ["."] |
| 23 | testpaths = ["tests"] |