Codebase list python-graphene-sqlalchemy / 698e0f99-2b63-46e3-a48f-6b713dc3a803/main bin / autolinter
698e0f99-2b63-46e3-a48f-6b713dc3a803/main

Tree @698e0f99-2b63-46e3-a48f-6b713dc3a803/main (Download .tar.gz)

autolinter @698e0f99-2b63-46e3-a48f-6b713dc3a803/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/