We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cb8201b + 5e6e218 commit 2ede57fCopy full SHA for 2ede57f
1 file changed
Makefile
@@ -14,14 +14,25 @@ lint:
14
pylint *.py src tests
15
pyroma --min 10 .
16
vulture . --min-confidence 100
17
- yapf --diff --recursive src/ tests/
+ yapf \
18
+ --diff \
19
+ --recursive \
20
+ .
21
22
.PHONY: fix-lint
23
fix-lint:
24
# Move imports to a single line so that autoflake can handle them.
25
# See https://github.com/myint/autoflake/issues/8.
26
# Then later we put them back.
27
isort --force-single-line --recursive --apply
- autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables .
- yapf --in-place --recursive .
28
+ autoflake \
29
+ --in-place \
30
31
+ --remove-all-unused-imports \
32
+ --remove-unused-variables \
33
34
35
36
37
38
isort --recursive --apply
0 commit comments