From 84660a29c826e079562ad540f6362e927dc5cf9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Voron?= Date: Thu, 10 Oct 2019 07:28:00 +0200 Subject: [PATCH] Add Makefile --- .editorconfig | 3 +++ Makefile | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 Makefile diff --git a/.editorconfig b/.editorconfig index d2db34fd..8d1ba9f2 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,3 +12,6 @@ end_of_line = lf [*.yml] indent_size = 2 + +[Makefile] +indent_style = tab diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..5789f4b0 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +PIPENV_RUN := pipenv run + +format: + $(PIPENV_RUN) isort -rc . + $(PIPENV_RUN) black . + +test: + $(PIPENV_RUN) pytest