Codebase list python-graphene-sqlalchemy / bf2bc696-752a-420b-a867-bd0573eb1f59/main bin / autolinter
bf2bc696-752a-420b-a867-bd0573eb1f59/main

Tree @bf2bc696-752a-420b-a867-bd0573eb1f59/main (Download .tar.gz)

autolinter @bf2bc696-752a-420b-a867-bd0573eb1f59/mainraw · history · blame

1
2
3
4
5
6
7
#!/bin/bash

# Install the required scripts with
# pip install autoflake autopep8 isort
autoflake ./examples/ ./graphene_sqlalchemy/ -r --remove-unused-variables --remove-all-unused-imports --in-place
autopep8 ./examples/ ./graphene_sqlalchemy/ -r --in-place --experimental --aggressive --max-line-length 120
isort -rc ./examples/ ./graphene_sqlalchemy/