We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf18730 commit c794fe5Copy full SHA for c794fe5
lib/utils.js
@@ -62,7 +62,7 @@ const findPackageFileInPath = input => {
62
*/
63
64
const formatPathsArrayToIgnore = paths =>
65
- paths.map(path => `!${path.replace(/^!/u, '')}`);
+ paths.filter(path => path).map(path => `!${path.replace(/^!/u, '')}`);
66
67
/**
68
* Sets default configuration values.
0 commit comments