diff options
| author | Yuval Adam <_@yuv.al> | 2020-09-23 17:58:06 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2020-09-23 17:58:32 +0300 |
| commit | a1aeb3d7f47522b6f1e33cc0a6391edffb4e4937 (patch) | |
| tree | 3425841740f22d3b5f5a61fbd80278496189c937 /Pipfile | |
| parent | e9942559847d46face3ee0763c875a625abb4c2a (diff) | |
Add lint and formatting tools
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -5,6 +5,9 @@ verify_ssl = true [dev-packages] pytest = "*" +black = "==19.10b0" +pylint = "*" +pre-commit = "*" [packages] pyephem = "*" @@ -13,6 +16,8 @@ fastapi = "*" uvicorn = "*" [scripts] +format = "black iss" +lint = "pylint -j 0 -d R,C iss" test = "pytest" server = "uvicorn iss.server:app" |
