various updates
This commit is contained in:
9
Makefile
9
Makefile
@ -1,3 +1,5 @@
|
||||
SRC = na/
|
||||
|
||||
all: build
|
||||
|
||||
build:
|
||||
@ -6,3 +8,10 @@ build:
|
||||
clean:
|
||||
[ -d dist/ ] && rm -rf dist/ || true
|
||||
find . -type d -name __pycache__ -exec rm -rf {} \; > /dev/null 2>&1 || true
|
||||
|
||||
format:
|
||||
isort --lai 2 $(SRC)
|
||||
autopep8 -riva --experimental --ignore e255 $(SRC)
|
||||
|
||||
lint:
|
||||
pylint $(SRC)
|
||||
|
Reference in New Issue
Block a user