
* 👷 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
6 lines
102 B
Bash
Executable File
6 lines
102 B
Bash
Executable File
#!/bin/sh -e
|
|
set -x
|
|
|
|
ruff sqlmodel tests docs_src scripts --fix
|
|
black sqlmodel tests docs_src scripts
|