We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54d2618 commit 60c2d59Copy full SHA for 60c2d59
.gitignore
@@ -0,0 +1 @@
1
+venv
Makefile
@@ -0,0 +1,18 @@
+# Use a standard bash shell, avoid zsh or fish
2
+SHELL:=/bin/bash
3
+
4
+# Select the default target, when you are simply running "make"
5
+.DEFAULT_GOAL:=lint
6
7
+# local executables
8
+pip:=./venv/bin/pip
9
+pre-commit=./venv/bin/pre-commit
10
11
+.PHONY: lint venv
12
13
+venv:
14
+ python3.7 -m venv venv
15
+ $(pip) install pre-commit
16
17
+lint:
18
+ $(pre-commit) run --all-files
0 commit comments