Skip to content

Commit 1876c98

Browse files
committed
correction of eslint comments
1 parent cd12de6 commit 1876c98

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/formatters/JSON.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const JsonFormatter = (difference) => JSON.stringify(difference);
1+
const JsonFormatter = difference => JSON.stringify(difference)
22

3-
export default JsonFormatter;
3+
export default JsonFormatter

src/parsers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ function parse(filePath) {
1414
}
1515
}
1616

17-
export default parse;
17+
export default parse

0 commit comments

Comments
 (0)