From e79a94191eaf4800cf36c279559082cab67fcbb5 Mon Sep 17 00:00:00 2001 From: Xymorot Date: Wed, 20 Nov 2019 23:00:16 +0100 Subject: [PATCH] fix: reformat forge config and add an escape \ before a dot in a regex --- forge.config.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/forge.config.js b/forge.config.js index 419e3ae..817d5f9 100644 --- a/forge.config.js +++ b/forge.config.js @@ -1,15 +1,15 @@ const ignoreList = [ /^\/\.idea($|\/)/, /^\/\.vscode($|\/)/, + /^\/\.nyc_output($|\/)/, /^\/database($|\/)/, /^\/declarations($|\/)/, /^\/mocks($|\/)/, - /^\/node_modules\/\.cache($|\/)/, - /^\/src\/.*\.(ts|js\.map)/, /^\/store($|\/)/, /^\/templates($|\/)/, /^\/tests($|\/)/, + /^\/\.editorconfig/, /^\/\.eslintignore/, /^\/\.eslintrc\.json/, @@ -17,12 +17,15 @@ const ignoreList = [ /^\/\.mocharc\.yml/, /^\/\.nycrc\.yml/, /^\/\.prettierrc\.yml/, - /^\/forge.config\.js/, + /^\/forge\.config\.js/, /^\/gulpfile\.js/, /^\/package-lock\.json/, /^\/tsconfig\.json/, /^\/tslint\.json/, /^\/webpack\.config\.js/, + + /^\/node_modules\/\.cache($|\/)/, + /^\/src\/.*\.(ts|js\.map)/, ]; module.exports = {