summaryrefslogtreecommitdiff
path: root/autoload/ale/fix/registry.vim
diff options
context:
space:
mode:
authorblyoa <blyoa@users.noreply.github.com>2020-08-17 18:14:38 +0900
committerGitHub <noreply@github.com>2020-08-17 10:14:38 +0100
commitd5c1d842307a4c916905d5160544cfe152a16ee0 (patch)
tree85bc13692b7dadda74d54c9a409043ddc16d3a5a /autoload/ale/fix/registry.vim
parent5c778e1ae752163a849609318ace6c3c6a37d6f7 (diff)
downloadale-d5c1d842307a4c916905d5160544cfe152a16ee0.zip
Add remark-lint for a markdown fixer (#2836)
Diffstat (limited to 'autoload/ale/fix/registry.vim')
-rw-r--r--autoload/ale/fix/registry.vim5
1 files changed, 5 insertions, 0 deletions
diff --git a/autoload/ale/fix/registry.vim b/autoload/ale/fix/registry.vim
index 02b02699..94476ca9 100644
--- a/autoload/ale/fix/registry.vim
+++ b/autoload/ale/fix/registry.vim
@@ -365,6 +365,11 @@ let s:default_registry = {
\ 'suggested_filetypes': ['nix'],
\ 'description': 'A formatter for Nix code',
\ },
+\ 'remark-lint': {
+\ 'function': 'ale#fixers#remark_lint#Fix',
+\ 'suggested_filetypes': ['markdown'],
+\ 'description': 'Fix markdown files with remark-lint',
+\ },
\ 'html-beautify': {
\ 'function': 'ale#fixers#html_beautify#Fix',
\ 'suggested_filetypes': ['html', 'htmldjango'],