diff --git a/docs/releasing.rst b/docs/releasing.rst index f71069d..7737aa8 100644 --- a/docs/releasing.rst +++ b/docs/releasing.rst @@ -124,4 +124,3 @@ We can now leave our docker container (`exit`) and continue with uploading the f .. code-block:: console python -m twine upload dist/* - diff --git a/pyproject.toml b/pyproject.toml index 7497897..c002f7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -247,6 +247,9 @@ max-complexity = 15 [tool.ruff.lint.per-file-ignores] "docs/**" = ["E402"] "src/xncml/**/__init__.py" = ["F401", "F403"] +"src/xncml/generated/*.py" = ["D"] +"tests/**/*.py" = ["D"] +"src/xncml/parser.py" = ["C901"] # To be added [tool.ruff.lint.pycodestyle] max-doc-length = 180