projects
/
infos-pratiques:etalage.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Update Makefile and fix flake8 issues.
[infos-pratiques:etalage.git]
/
Makefile
1
.PHONY: check flake8 jshint
2
3
all: clean flake8 jshint
4
5
clean:
6
find -name "*.pyc" | xargs rm -f
7
rm -rf cache/*
8
9
flake8:
10
flake8 --max-line-length=120 --ignore=E123,E124,E128,E251 etalage
11
12
jshint:
13
jshint etalage/static/js/*.js