We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c5bb21 commit c72d1bfCopy full SHA for c72d1bf
Makefile
@@ -10,19 +10,19 @@ check: check-pylint check-mypy check-black
10
11
.PHONY: check-pylint
12
check-pylint:
13
- $(PYTHON) -m pylint src
+ $(PYTHON) -m pylint src examples
14
15
.PHONY: check-mypy
16
check-mypy:
17
- $(PYTHON) -m mypy src
+ $(PYTHON) -m mypy src examples
18
19
.PHONY: check-black
20
check-black:
21
- $(PYTHON) -m black --check $(BLACK_OPTIONS) src --exclude '/bindings\.py'
+ $(PYTHON) -m black --check $(BLACK_OPTIONS) src examples --exclude '/bindings\.py'
22
23
.PHONY: format
24
format:
25
- $(PYTHON) -m black $(BLACK_OPTIONS) src --exclude '/bindings\.py'
+ $(PYTHON) -m black $(BLACK_OPTIONS) src examples --exclude '/bindings\.py'
26
27
.PHONY: build
28
build:
0 commit comments