Skip to content

Commit 8658a53

Browse files
committed
Couple more linting fixes.
1 parent 79166e3 commit 8658a53

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/core/src/lib/pseudopattern_hunter.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ pseudopattern_hunter.prototype.find_pseudopatterns = function(
2424

2525
//look for a pseudo pattern by checking if there is a file containing same
2626
//name, with ~ in it, ending in .json, .yml or .yaml
27-
const needle = currentPattern.subdir +
27+
const needle =
28+
currentPattern.subdir +
2829
'/' +
2930
currentPattern.fileName +
3031
'~*.{json,yml,yaml}';
@@ -55,7 +56,7 @@ pseudopattern_hunter.prototype.find_pseudopatterns = function(
5556
logger.warning(
5657
`There was an error parsing pseudopattern JSON for ${
5758
currentPattern.relPath
58-
}`
59+
}`
5960
);
6061
logger.warning(err);
6162
}

0 commit comments

Comments
 (0)