15 lines
253 B
Bash
Executable file
15 lines
253 B
Bash
Executable file
#!/bin/sh
|
|
|
|
yapf \
|
|
--recursive \
|
|
--in-place \
|
|
--parallel \
|
|
.
|
|
autoflake \
|
|
--recursive \
|
|
--in-place \
|
|
--remove-unused-variables \
|
|
--remove-all-unused-imports \
|
|
--expand-star-imports \
|
|
--remove-duplicate-keys \
|
|
.
|