summaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2020-09-23 17:58:06 +0300
committerYuval Adam <_@yuv.al>2020-09-23 17:58:32 +0300
commita1aeb3d7f47522b6f1e33cc0a6391edffb4e4937 (patch)
tree3425841740f22d3b5f5a61fbd80278496189c937 /Pipfile
parente9942559847d46face3ee0763c875a625abb4c2a (diff)
Add lint and formatting tools
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
index f72e8e4..bd49e7d 100644
--- a/Pipfile
+++ b/Pipfile
@@ -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"