graphene-django/bin/autolinter
2016-09-17 16:31:17 -07:00

8 lines
342 B
Bash
Executable File

#!/bin/bash
# Install the required scripts with
# pip install autoflake autopep8 isort
autoflake ./examples/ ./graphene_django/ -r --remove-unused-variables --remove-all-unused-imports --in-place
autopep8 ./examples/ ./graphene_django/ -r --in-place --experimental --aggressive --max-line-length 120
isort -rc ./examples/ ./graphene_django/