]> gitweb.michael.orlitzky.com - dunshire.git/blob - makefile
Add variable name exceptions to the `make lint` target.
[dunshire.git] / makefile
1 .PHONY: check
2 check:
3 python test/suite.py
4
5 .PHONY: lint
6 lint:
7 PYTHONPATH="src/dunshire" pylint \
8 --reports=n \
9 --good-names='b,c,h,A,C,G,_K,_L' \
10 src/dunshire/*.py
11
12 .PHONY: clean
13 clean:
14 rm -rf src/dunshire/__pycache__