1
0
Fork 0
sqlglot/run_checks.sh

13 lines
328 B
Bash
Raw Normal View History

#!/bin/bash -e
python -m autoflake -i -r \
--expand-star-imports \
--remove-all-unused-imports \
--ignore-init-module-imports \
--remove-duplicate-keys \
--remove-unused-variables \
sqlglot/ tests/
python -m isort --profile black sqlglot/ tests/
python -m black --line-length 120 sqlglot/ tests/
python -m unittest