13 lines
No EOL
265 B
Text
Executable file
13 lines
No EOL
265 B
Text
Executable file
# Run within root directory
|
|
|
|
if [[ $1 = "check" ]]; then
|
|
isort . --check-only --diff \
|
|
&& black . --check \
|
|
&& pylint src/ \
|
|
&& pydocstyle src/*
|
|
else
|
|
isort .
|
|
black .
|
|
pylint src/
|
|
pydocstyle src/*
|
|
fi |