We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e82bcd commit 3bf1486Copy full SHA for 3bf1486
Makefile
@@ -17,6 +17,10 @@ lint:
17
18
.PHONY: fix-lint
19
fix-lint:
20
+ # Move imports to a single line so that autoflake can handle them.
21
+ # See https://github.com/myint/autoflake/issues/8.
22
+ # Then later we put them back.
23
+ isort --force-single-line --recursive --apply
24
autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables .
25
yapf --in-place --recursive .
26
isort --recursive --apply
0 commit comments