mirror of
https://github.com/james-m-jordan/morphik-core.git
synced 2025-05-09 19:32:38 +00:00
17 lines
254 B
Bash
Executable File
17 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Script to format Python code in the specified order
|
|
# 1. isort
|
|
# 2. black
|
|
# 3. ruff
|
|
|
|
echo "Running isort..."
|
|
isort .
|
|
|
|
echo "Running black..."
|
|
black . --line-length=120
|
|
|
|
echo "Running ruff..."
|
|
ruff check --fix .
|
|
|
|
echo "Formatting complete!" |