diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-01-15 15:36:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-15 15:36:20 +0000 |
commit | d1fc084b2d3af6dd9807a01a6ca7822af6c2a78f (patch) | |
tree | 85b2334cc0d2bd3b655671109cc486d2de92ef30 | |
parent | a50e049e747739c711198bd706c7340e16b182cc (diff) | |
parent | 6efa37d35bbeb67cd436a6027c2be0dda43d9802 (diff) | |
download | ale-d1fc084b2d3af6dd9807a01a6ca7822af6c2a78f.zip |
Merge pull request #2209 from samzeng/patch-1
Fixed typo
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -761,7 +761,7 @@ Or if you want, you can configure the linters from your vimrc file. ```vim " In ~/.vim/vimrc, or somewhere similar. -let g:ale_linter_aliases = {'jsx': ['css, 'javascript']} +let g:ale_linter_aliases = {'jsx': ['css', 'javascript']} let g:ale_linters = {'jsx': ['stylelint', 'eslint']} ``` |