fix: reformat forge config and add an escape \ before a dot in a regex

This commit is contained in:
Xymorot 2019-11-20 23:00:16 +01:00
parent 550e65dedb
commit e79a94191e
1 changed files with 6 additions and 3 deletions

View File

@ -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 = {