@@ -80,26 +80,26 @@ For `find`:
8080TEST_PATH =./
8181
8282clean-pyc :
83- find . -name '*.pyc' -exec rm --force {} +
84- find . -name '*.pyo' -exec rm --force {} +
85- name '*~' -exec rm --force {}
83+ find . -name ' *.pyc' -exec rm --force {} +
84+ find . -name ' *.pyo' -exec rm --force {} +
85+ name ' *~' -exec rm --force {}
8686
8787clean-build :
88- rm --force --recursive build/
89- rm --force --recursive dist/
90- rm --force --recursive *.egg-info
88+ rm --force --recursive build/
89+ rm --force --recursive dist/
90+ rm --force --recursive * .egg-info
9191
9292isort :
93- sh -c "isort --skip-glob=.tox --recursive . "
93+ sh -c " isort --skip-glob=.tox --recursive . "
9494
9595lint :
96- flake8 --exclude=.tox
96+ flake8 --exclude=.tox
9797
9898test : clean-pyc
99- py.test --verbose --color=yes $(TEST_PATH)
99+ py.test --verbose --color=yes $(TEST_PATH )
100100
101101run :
102- python manage.py runserver
102+ python manage.py runserver
103103```
104104
105105Removing `.pyc` files might be different for pycache dir in newer PY3 or even the global dir.
@@ -116,7 +116,7 @@ Optionally add this at the top to prevent a file with that name from being execu
116116- `Makefile`
117117 ```make
118118 run :
119- python manage.py runserver --host $(HOST) --port $(PORT)
119+ python manage.py runserver --host $(HOST ) --port $(PORT )
120120 ```
121121
122122Run :
169169
170170# ### Spellcheck
171171
172+ On comments and docstrings.
173+
172174```make
173- # Run spellcheck on comments and docstring.
174175spell :
175176 @pylint --disable all --enable spelling --spelling-dict en_US --spelling-private-dict-file spell.txt my_app
176177```
0 commit comments