Skip to content

Commit

Permalink
Fix newly found lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hmdne committed Mar 23, 2022
1 parent 9d900dd commit 08d318c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .rubocop.yml
Expand Up @@ -365,6 +365,7 @@ Naming/FileName:
- 'stdlib/opal-parser.rb'
- 'stdlib/opal-platform.rb'
- 'stdlib/opal-source-maps.rb'
- 'stdlib/opal-replutils.rb'

Naming/ConstantName:
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion stdlib/opal-replutils.rb
Expand Up @@ -65,7 +65,7 @@ def eval_and_print(func, mode, colorize)
if (mode == 'silent') return nil;
if (typeof $_result === 'null') {
if ($_result === null) {
return "=> null";
}
else if (typeof $_result === 'undefined') {
Expand Down

0 comments on commit 08d318c

Please sign in to comment.