9 lines
130 B
Bash
Executable File
9 lines
130 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export SOURCE_FILES="uvicorn tests"
|
|
|
|
set -x
|
|
|
|
uv run ruff format $SOURCE_FILES
|
|
uv run ruff check --fix $SOURCE_FILES
|