dfmt support (#2662)

* Add support for `dfmt`
This commit is contained in:
theoremoon
2019-09-11 04:54:14 +09:00
committed by w0rp
parent 6e18c03d80
commit 2e323b529d
8 changed files with 75 additions and 0 deletions

View File

@@ -27,6 +27,11 @@ let s:default_registry = {
\ 'suggested_filetypes': ['python'],
\ 'description': 'Fix PEP8 issues with black.',
\ },
\ 'dfmt': {
\ 'function': 'ale#fixers#dfmt#Fix',
\ 'suggested_filetypes': ['d'],
\ 'description': 'Fix D files with dfmt.',
\ },
\ 'fecs': {
\ 'function': 'ale#fixers#fecs#Fix',
\ 'suggested_filetypes': ['javascript', 'css', 'html'],