Add fixer tidy for HTML

Add tests for tidy HTML fixer
This commit is contained in:
Abin Simon
2018-06-23 15:40:28 +05:30
parent 935740cf93
commit 17c1aefb5b
8 changed files with 68 additions and 0 deletions

View File

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