1
0
mirror of synced 2024-12-04 19:17:55 +01:00
jubeatools/utils/format_code.sh

15 lines
282 B
Bash
Raw Normal View History

2021-05-04 13:39:40 +02:00
# find all files with unused imports, then hand them off to autoimport
flake8 \
--isolated \
--select=F401 \
--format='%(path)s' \
--exclude=__init__.py \
| sort \
| uniq \
| xargs autoimport
# auto-sort imports in all files
2021-04-29 13:14:25 +02:00
isort -y
2021-05-04 13:39:40 +02:00
# format code
2021-04-29 13:14:25 +02:00
black jubeatools