Codebase list python-graphene-sqlalchemy / 45106445-780b-4d99-9921-0eea9bc27ff9/upstream bin / autolinter
45106445-780b-4d99-9921-0eea9bc27ff9/upstream

Tree @45106445-780b-4d99-9921-0eea9bc27ff9/upstream (Download .tar.gz)

autolinter @45106445-780b-4d99-9921-0eea9bc27ff9/upstreamraw · 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/