diff options
author | w0rp <devw0rp@gmail.com> | 2018-07-24 10:05:44 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-07-24 10:05:44 +0100 |
commit | d368f090aeeca3545dd03b1bfe4bff5e6a95d7e2 (patch) | |
tree | 01cb50e7de53bd94f162a59bdefb0a21c08699e6 /ale_linters/sml/smlnj_cm.vim | |
parent | 95be2bf1ff9221eb74dc028ca616412305b2bc85 (diff) | |
download | ale-d368f090aeeca3545dd03b1bfe4bff5e6a95d7e2.zip |
#1754 Require snake_case names for linters in the codebase
Diffstat (limited to 'ale_linters/sml/smlnj_cm.vim')
-rw-r--r-- | ale_linters/sml/smlnj_cm.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ale_linters/sml/smlnj_cm.vim b/ale_linters/sml/smlnj_cm.vim index 96cd7bd9..7a482307 100644 --- a/ale_linters/sml/smlnj_cm.vim +++ b/ale_linters/sml/smlnj_cm.vim @@ -9,7 +9,8 @@ endfunction " Using CM requires that we set "lint_file: 1", since it reads the files " from the disk itself. call ale#linter#Define('sml', { -\ 'name': 'smlnj-cm', +\ 'name': 'smlnj_cm', +\ 'aliases': ['smlnj-cm'], \ 'executable_callback': 'ale#handlers#sml#GetExecutableSmlnjCm', \ 'lint_file': 1, \ 'command_callback': 'ale_linters#sml#smlnj_cm#GetCommand', |