Codebase list python-graphene-sqlalchemy / 7c8b7609-6cac-4728-89c3-ff8f33418d0e/main bin / autolinter
7c8b7609-6cac-4728-89c3-ff8f33418d0e/main

Tree @7c8b7609-6cac-4728-89c3-ff8f33418d0e/main (Download .tar.gz)

autolinter @7c8b7609-6cac-4728-89c3-ff8f33418d0e/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/