Codebase list python-graphene-sqlalchemy / 3c86b8bb-f7c0-424f-a101-be1a280e07f8/main bin / autolinter
3c86b8bb-f7c0-424f-a101-be1a280e07f8/main

Tree @3c86b8bb-f7c0-424f-a101-be1a280e07f8/main (Download .tar.gz)

autolinter @3c86b8bb-f7c0-424f-a101-be1a280e07f8/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/