Skip to content

Commit

Permalink
Address lint rules, see phetsims/chipper#1276
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jul 11, 2022
1 parent a335a8b commit f307182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/grunt/checkoutShas.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module.exports = function( repositoryName, toMaster, buildServer ) {

for ( const property of dependencies ) {
if ( property !== 'comment' && property !== repositoryName && dependencies.hasOwnProperty( property ) ) {
assert( typeof ( dependencies[ property ].branch !== 'undefined' ) && typeof ( dependencies[ property ].sha !== 'undefined' ) );
assert( typeof dependencies[ property ].branch !== 'undefined' && typeof dependencies[ property ].sha !== 'undefined' );

grunt.log.writeln( `Checking out dependency ${property}: ${dependencies[ property ].branch}@${dependencies[ property ].sha}` );

Expand Down

0 comments on commit f307182

Please sign in to comment.