mirror of https://github.com/watcha-fr/synapse
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
302 B
12 lines
302 B
#!/bin/sh
|
|
#
|
|
# Runs linting scripts over the local Synapse checkout
|
|
# isort - sorts import statements
|
|
# flake8 - lints and finds mistakes
|
|
# black - opinionated code formatter
|
|
|
|
set -e
|
|
|
|
isort -y -rc synapse tests scripts-dev scripts
|
|
flake8 synapse tests
|
|
python3 -m black synapse tests scripts-dev scripts
|
|
|