
* 👷 Add pre-commit * 🔧 Add pyproject.toml config for Ruff * ➕ Replace isort, flake8, autoflake with Ruff * 🔨 Update lint and format scripts * 🎨 Format with Ruff * 🔧 Update Poetry config
9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mypy sqlmodel
|
|
ruff sqlmodel tests docs_src scripts
|
|
black sqlmodel tests docs_src --check
|