Codebase list python-graphene-sqlalchemy / 3ea4c1f3-10b9-48a3-a0d8-5d4c40192276/main bin / autolinter
3ea4c1f3-10b9-48a3-a0d8-5d4c40192276/main

Tree @3ea4c1f3-10b9-48a3-a0d8-5d4c40192276/main (Download .tar.gz)

autolinter @3ea4c1f3-10b9-48a3-a0d8-5d4c40192276/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/