fix: reformat forge config and add an escape \ before a dot in a regex
This commit is contained in:
parent
550e65dedb
commit
e79a94191e
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue