|
|
@ -19,6 +19,7 @@ const IGNORE_NOT_FOUND: string[] = [
|
|
|
|
'/.git/',
|
|
|
|
'/.git/',
|
|
|
|
'/node_modules',
|
|
|
|
'/node_modules',
|
|
|
|
'/pom.xml',
|
|
|
|
'/pom.xml',
|
|
|
|
|
|
|
|
'/app/src/main/AndroidManifest.xml',
|
|
|
|
];
|
|
|
|
];
|
|
|
|
function shouldIgnoreNotFound(path: string) {
|
|
|
|
function shouldIgnoreNotFound(path: string) {
|
|
|
|
return IGNORE_NOT_FOUND.some(entry => entry === path || entry.endsWith('/') && path.startsWith(entry));
|
|
|
|
return IGNORE_NOT_FOUND.some(entry => entry === path || entry.endsWith('/') && path.startsWith(entry));
|
|
|
|