From a1aeb3d7f47522b6f1e33cc0a6391edffb4e4937 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Wed, 23 Sep 2020 17:58:06 +0300 Subject: Add lint and formatting tools --- Pipfile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Pipfile') 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" -- cgit v1.3.1