mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-02 20:59:12 +01:00
3dd61d12cd
Add a dev script to cover all the different linting steps.
12 lines
302 B
Bash
Executable file
12 lines
302 B
Bash
Executable file
#!/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
|