X Tutup
Skip to content

Commit 8c40d83

Browse files
committed
update makefile with pycodestyle and reduce max line length
1 parent 1999aed commit 8c40d83

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ docs:
3535
$(MAKE) -C doc html
3636

3737
lint:
38-
flake8 twitter > violations.flake8.txt
38+
pycodestyle --config={toxinidir}/setup.cfg twitter tests
3939

4040
test: lint
4141
python setup.py test

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ ignore = E111,E124,E126,E221,E501
1212

1313
[pep8]
1414
ignore = E111,E124,E126,E221,E501
15-
max-line-length = 160
15+
max-line-length = 100

0 commit comments

Comments
 (0)
X Tutup