1
0
Fork 0
sqlglot/run_checks.sh
Daniel Baumann 08ecea3adf
Merging upstream version 6.1.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-13 08:04:41 +01:00

12 lines
328 B
Bash
Executable file

#!/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