We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2efec2 commit aeb3663Copy full SHA for aeb3663
.gitignore
@@ -8,5 +8,6 @@ __pycache__/
8
.python-version
9
.vscode/
10
.ruff_cache/
11
+uv.lock
12
13
.claude/settings.local.json
CLAUDE.md
@@ -18,11 +18,11 @@ tox
18
# Run a single test
19
pytest -v fieldsignals/tests/test_signals.py::TestPreSave::test_pre_save_changed
20
21
-# Format code
22
-black .
23
-
24
# Lint
25
-flake8
+ruff check .
+
+# Type check
+tox -e mypy
26
```
27
28
## Architecture
0 commit comments