From 0036208d280279059b8fb1048e61082d478ea661 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 12 Oct 2019 17:47:35 +0200 Subject: [PATCH] Fix non-matching remark-lint ignore pattern 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. 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/