Codebase list python-graphene-sqlalchemy / df364051-dcdc-4720-96f6-9394357161de/main bin / autolinter
df364051-dcdc-4720-96f6-9394357161de/main

Tree @df364051-dcdc-4720-96f6-9394357161de/main (Download .tar.gz)

autolinter @df364051-dcdc-4720-96f6-9394357161de/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/