Codebase list python-graphene-sqlalchemy / a71e89fa-1625-49b6-9344-235718634cd2/main bin / autolinter
a71e89fa-1625-49b6-9344-235718634cd2/main

Tree @a71e89fa-1625-49b6-9344-235718634cd2/main (Download .tar.gz)

autolinter @a71e89fa-1625-49b6-9344-235718634cd2/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/