Skip to content

Commit

Permalink
fixing lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
catdad committed Apr 28, 2024
1 parent 1f4609c commit 9de9615
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/hook.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ const pathmap = {};
const file = require.resolve(optPath);
pathmap[file] = true;
queue({ type: 'discover', file });
} catch (e) {}
} catch (e) {
// you know... because lint
e;
}
}
})(process.argv.slice(3));

Expand Down

0 comments on commit 9de9615

Please sign in to comment.