diff --git a/python/{{cookiecutter.project_slug}}/pyproject.toml b/python/{{cookiecutter.project_slug}}/pyproject.toml index d3a2d43..41cb116 100644 --- a/python/{{cookiecutter.project_slug}}/pyproject.toml +++ b/python/{{cookiecutter.project_slug}}/pyproject.toml @@ -123,16 +123,20 @@ fixable = [ # E117 - over-indented* # E501 - line-too-long* # W191 - tab-indentation* +# S321 - suspicious-ftp-lib-usage # *ignored for compatibility with formatter ignore = [ "ANN101", "ANN003", "D203", "D205", "D206", "D213", "D300", "D400", "D415", "E111", "E114", "E117", "E501", - "W191" + "W191", + "S321", ] [tool.ruff.per-file-ignores] # ANN001 - missing-type-function-argument # ANN102 - missing-type-cls # ANN2 - missing-return-type -"tests/*" = ["ANN001", "ANN102", "ANN2"] +# S101 - assert +# B011 - assert-false +"tests/*" = ["ANN001", "ANN102", "ANN2", "S101", "B011"]