Created
August 15, 2017 16:14
-
-
Save arbarlow/956e9070ad7a2d8359ee431ec6e7e0e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! neoformat#formatters#python#autoflake() abort | |
return { | |
\ 'exe': 'autoflake', | |
\ 'args': ['--remove-all-unused-imports', '-i'], | |
\ 'replace': 1, | |
\ } | |
endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment