Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela committed Mar 18, 2020
1 parent d83a091 commit 3852df9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -286,7 +286,7 @@ function parseOptions(optionGroup, context) {
try {
projectConfig = config.getProjectForFile(context.getFilename());
} catch (e) {
if (!e instanceof ProjectNotFoundError) {
if (!(e instanceof ProjectNotFoundError)) {
throw e;
}
}
Expand Down

0 comments on commit 3852df9

Please sign in to comment.