5 lines
105 B
Text
Executable file
5 lines
105 B
Text
Executable file
# Run within root directory. Runs isort, black, then pylint
|
|
isort .
|
|
black .
|
|
pylint src/
|
|
pydocstyle src/*
|