Codebase list python-graphene-sqlalchemy / 8ef78128-2730-4682-b278-1498f238196b/upstream bin / autolinter
8ef78128-2730-4682-b278-1498f238196b/upstream

Tree @8ef78128-2730-4682-b278-1498f238196b/upstream (Download .tar.gz)

autolinter @8ef78128-2730-4682-b278-1498f238196b/upstreamraw · 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/