From 8ae06b3b870befe9ab3164039797e4861a60a9df Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 12 Oct 2019 17:52:31 +0200 Subject: [PATCH] Fix non-matching remark-lint ignore pattern (#181) Currently the defined pattern for directories are not matching because they are defined with "asterisk" wildcard character at the end of the paths. These have been removed in order to make them work correctly. Fixes GH-180 --- .remarkignore | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.remarkignore b/.remarkignore index 30d710b3..50a385bb 100644 --- a/.remarkignore +++ b/.remarkignore @@ -5,8 +5,10 @@ # Repository: https://github.com/arcticicestudio/nord-docs # License: MIT -.cache/* -build/* -**/node_modules/* -public/* -static/* +# Important: Directories must have no "asterisk" wildcard character at the path end, +# otherwise the pattern won't match! +**/.cache/ +**/build/ +**/node_modules/ +**/public/ +**/static/