-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
11 lines (10 loc) · 761 Bytes
/
pyproject.toml
File metadata and controls
11 lines (10 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
[tool.ruff]
# Extend the `pyproject.toml` file in the parent directory...
extend = "../../pyproject.toml"
[tool.ruff.lint.flake8-tidy-imports.banned-api]
"domains".msg = "Clean Architecture dependency rule break: import of `domains` is not allowed"
"dramatiq_worker".msg = "Clean Architecture dependency rule break: import of `dramatiq_worker` is not allowed"
"http_app".msg = "Clean Architecture dependency rule break: import of `http_app` is not allowed"
"gateways".msg = "Clean Architecture dependency rule break: import of `gateways` is not allowed"
"migrations".msg = "Clean Architecture dependency rule break: import of `migrations` is not allowed"
"socketio_app".msg = "Clean Architecture dependency rule break: import of `socketio_app` is not allowed"