Skip to content

Commit a099b10

Browse files
committed
Add --in-place and others to default args in pre-commit hook
Closes #78.
1 parent 2645f85 commit a099b10

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.pre-commit-hooks.yaml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
- id: autoflake
2-
name: autoflake
3-
entry: autoflake
4-
language: python
5-
'types': [python]
6-
require_serial: true
1+
- id: autoflake
2+
name: autoflake
3+
entry: autoflake
4+
language: python
5+
"types": [python]
6+
require_serial: true
7+
args:
8+
- "--in-place"
9+
- "--expand-star-imports"
10+
- "--remove-duplicate-keys"
11+
- "--remove-unused-variables"

0 commit comments

Comments
 (0)