Set up a development environment.
()
| 10 | |
| 11 | |
| 12 | def dev_setup() -> None: |
| 13 | """Set up a development environment.""" |
| 14 | with local.cwd(HERE): |
| 15 | local["direnv"]("allow") |
| 16 | local["uv"]("sync", "--frozen") |
| 17 | |
| 18 | |
| 19 | def lint() -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected