Codebase list python-graphene-sqlalchemy / be59e656-49a1-4fd3-96b2-736b35c37ced/upstream bin / autolinter
be59e656-49a1-4fd3-96b2-736b35c37ced/upstream

Tree @be59e656-49a1-4fd3-96b2-736b35c37ced/upstream (Download .tar.gz)

autolinter @be59e656-49a1-4fd3-96b2-736b35c37ced/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/