File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed
Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,25 @@ lint:
1414 pylint * .py src tests
1515 pyroma --min 10 .
1616 vulture . --min-confidence 100
17- yapf --diff --recursive src/ tests/
17+ yapf \
18+ --diff \
19+ --recursive \
20+ .
1821
1922.PHONY : fix-lint
2023fix-lint :
2124 # Move imports to a single line so that autoflake can handle them.
2225 # See https://github.com/myint/autoflake/issues/8.
2326 # Then later we put them back.
2427 isort --force-single-line --recursive --apply
25- autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables .
26- yapf --in-place --recursive .
28+ autoflake \
29+ --in-place \
30+ --recursive \
31+ --remove-all-unused-imports \
32+ --remove-unused-variables \
33+ .
34+ yapf \
35+ --in-place \
36+ --recursive \
37+ .
2738 isort --recursive --apply
You can’t perform that action at this time.
0 commit comments