Added support for Python black fixer (#1451)

This commit is contained in:
Jack Evans
2018-04-06 10:08:25 +01:00
committed by w0rp
parent 85a2a00826
commit c5d3af04fc
8 changed files with 100 additions and 2 deletions

View File

@@ -17,6 +17,11 @@ let s:default_registry = {
\ 'suggested_filetypes': ['python'],
\ 'description': 'Fix PEP8 issues with autopep8.',
\ },
\ 'black': {
\ 'function': 'ale#fixers#black#Fix',
\ 'suggested_filetypes': ['python'],
\ 'description': 'Fix PEP8 issues with black.',
\ },
\ 'prettier_standard': {
\ 'function': 'ale#fixers#prettier_standard#Fix',
\ 'suggested_filetypes': ['javascript'],