Skip to content

Commit

Permalink
Add ignore-pass-after-doctstring and ignore-pass-statement to config
Browse files Browse the repository at this point in the history
Closes #145.
  • Loading branch information
fsouza committed Sep 21, 2022
1 parent e336b39 commit bde9f6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion autoflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -1200,12 +1200,14 @@ def merge_configuration_file(args):
"check",
"expand-star-imports",
"ignore-init-module-imports",
"ignore-pass-after-docstring",
"ignore-pass-statements",
"in-place",
"recursive",
"remove-all-unused-imports",
"remove-duplicate-keys",
"remove-unused-variables",
"remove-rhs-for-unused-variables",
"remove-unused-variables",
}:
# boolean properties
if isinstance(value, str):
Expand Down

0 comments on commit bde9f6c

Please sign in to comment.