mirror of https://github.com/dense-analysis/ale
Adding linting for rmd filetype (duplicate of rmarkdown)
This commit is contained in:
parent
61cfb3fefb
commit
34431d885b
|
@ -322,7 +322,7 @@ let s:default_registry = {
|
|||
\ },
|
||||
\ 'styler': {
|
||||
\ 'function': 'ale#fixers#styler#Fix',
|
||||
\ 'suggested_filetypes': ['r', 'rmarkdown'],
|
||||
\ 'suggested_filetypes': ['r', 'rmarkdown', 'rmd'],
|
||||
\ 'description': 'Fix R files with styler.',
|
||||
\ },
|
||||
\ 'latexindent': {
|
||||
|
|
|
@ -14,6 +14,7 @@ let s:default_ale_linter_aliases = {
|
|||
\ 'csh': 'sh',
|
||||
\ 'plaintex': 'tex',
|
||||
\ 'rmarkdown': 'r',
|
||||
\ 'rmd': 'r',
|
||||
\ 'systemverilog': 'verilog',
|
||||
\ 'verilog_systemverilog': ['verilog_systemverilog', 'verilog'],
|
||||
\ 'vimwiki': 'markdown',
|
||||
|
|
|
@ -1043,6 +1043,7 @@ g:ale_linter_aliases *g:ale_linter_aliases*
|
|||
\ 'csh': 'sh',
|
||||
\ 'plaintex': 'tex',
|
||||
\ 'rmarkdown': 'r',
|
||||
\ 'rmd': 'r',
|
||||
\ 'systemverilog': 'verilog',
|
||||
\ 'verilog_systemverilog': ['verilog_systemverilog', 'verilog'],
|
||||
\ 'vimwiki': 'markdown',
|
||||
|
|
Loading…
Reference in New Issue