Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 07c28b5

Browse files
committed
prettier it all
1 parent a2d7a0c commit 07c28b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/eslint-rules/no-production-logging.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ module.exports = function(context) {
2323
}
2424
}
2525

26-
const isLoggerNode = name => ['warning', 'warningWithoutStack'].includes(name);
26+
const isLoggerNode = name =>
27+
['warning', 'warningWithoutStack'].includes(name);
2728

2829
return {
2930
CallExpression: node => {

0 commit comments

Comments
 (0)