graphene/bin/autolinter

8 lines
321 B
Plaintext
Raw Normal View History

#!/bin/bash
2016-01-02 23:19:15 +03:00
# Install the required scripts with
# pip install autoflake autopep8 isort
2015-12-03 10:46:49 +03:00
autoflake ./examples/ ./graphene/ -r --remove-unused-variables --remove-all-unused-imports --in-place
autopep8 ./examples/ ./graphene/ -r --in-place --experimental --aggressive --max-line-length 120
isort -rc ./examples/ ./graphene/