Codebase list python-graphene-sqlalchemy / f827f065-2a8c-4858-b6af-9d18fbe0b881/main bin / autolinter
f827f065-2a8c-4858-b6af-9d18fbe0b881/main

Tree @f827f065-2a8c-4858-b6af-9d18fbe0b881/main (Download .tar.gz)

autolinter @f827f065-2a8c-4858-b6af-9d18fbe0b881/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/