Codebase list python-graphene-sqlalchemy / cdf56224-315c-4764-bc42-b285f286a45f/main bin / autolinter
cdf56224-315c-4764-bc42-b285f286a45f/main

Tree @cdf56224-315c-4764-bc42-b285f286a45f/main (Download .tar.gz)

autolinter @cdf56224-315c-4764-bc42-b285f286a45f/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/