Codebase list python-graphene-sqlalchemy / b4164697-8089-4642-b733-bbb582241bee/main bin / autolinter
b4164697-8089-4642-b733-bbb582241bee/main

Tree @b4164697-8089-4642-b733-bbb582241bee/main (Download .tar.gz)

autolinter @b4164697-8089-4642-b733-bbb582241bee/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/