From 344add6a28a5ee3ba0c6cae0182fdd20ca17d5ad Mon Sep 17 00:00:00 2001 From: w0rp Date: Sun, 19 Nov 2017 13:57:04 +0000 Subject: [PATCH] Fix a typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1c69fb2..6ed4b1d 100644 --- a/README.md +++ b/README.md @@ -669,8 +669,8 @@ absolute path to a file, you can use `g:ale_pattern_options`. ```vim " Do not lint or fix minified files. let g:ale_pattern_options = { -\ '\.min\.js$': {'ale_linters': [], 'ale_fixers: []}, -\ '\.min\.css$': {'ale_linters': [], 'ale_fixers: []}, +\ '\.min\.js$': {'ale_linters': [], 'ale_fixers': []}, +\ '\.min\.css$': {'ale_linters': [], 'ale_fixers': []}, \} " If you configure g:ale_pattern_options outside of vimrc, you need this. let g:ale_pattern_options_enabled = 1