Skip to content

Commit

Permalink
remove blank line at end of file, phetsims/chipper#1427
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Kauzmann <[email protected]>
  • Loading branch information
zepumph committed Mar 22, 2024
1 parent 074163e commit 336f03f
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
/* eslint-env node */

// use chipper's gruntfile
module.exports = require( '../chipper/js/grunt/Gruntfile.js' );
module.exports = require( '../chipper/js/grunt/Gruntfile.js' );
2 changes: 1 addition & 1 deletion js/DescriptionRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ export default class DescriptionRegistry {
}
}

tandemNamespace.register( 'DescriptionRegistry', DescriptionRegistry );
tandemNamespace.register( 'DescriptionRegistry', DescriptionRegistry );
2 changes: 1 addition & 1 deletion js/PhetioIDUtilsTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ QUnit.test( 'Test archetype mapping', assert => {
'myGroup.myElement_blarg2.positionProperty' ),
'myGroup.archetype.positionProperty',
'Unexpected phetioID' );
} );
} );
2 changes: 1 addition & 1 deletion js/PhetioObject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -927,4 +927,4 @@ class LinkedElement extends PhetioObject {
}

tandemNamespace.register( 'PhetioObject', PhetioObject );
export { PhetioObject as default, LinkedElement };
export { PhetioObject as default, LinkedElement };
2 changes: 1 addition & 1 deletion js/isClearingPhetioDynamicElementsProperty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ const isClearingPhetioDynamicElementsProperty = new TinyProperty( false );

tandemNamespace.register( 'isClearingPhetioDynamicElementsProperty', isClearingPhetioDynamicElementsProperty );

export default isClearingPhetioDynamicElementsProperty;
export default isClearingPhetioDynamicElementsProperty;
2 changes: 1 addition & 1 deletion js/isSettingPhetioStateProperty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ const isSettingPhetioStateProperty = new TinyProperty( false );

tandemNamespace.register( 'isSettingPhetioStateProperty', isSettingPhetioStateProperty );

export default isSettingPhetioStateProperty;
export default isSettingPhetioStateProperty;
2 changes: 1 addition & 1 deletion js/phetioElementSelectionProperty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ const phetioElementSelectionProperty = new Property<PhetioElementSelection>( 'no

tandemNamespace.register( 'phetioElementSelectionProperty', phetioElementSelectionProperty );

export default phetioElementSelectionProperty;
export default phetioElementSelectionProperty;
2 changes: 1 addition & 1 deletion js/phetioElementsDisplayProperty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ const phetioElementsDisplayProperty = new Property<PhetioElementsDisplay>( initi

tandemNamespace.register( 'phetioElementsDisplayProperty', phetioElementsDisplayProperty );

export default phetioElementsDisplayProperty;
export default phetioElementsDisplayProperty;
2 changes: 1 addition & 1 deletion js/types/IOTypeTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ QUnit.test( 'default toStateObject and applyState', assert => {
assert.ok( !x.hasOwnProperty( 'secretName' ), 'do not write a bad field secretName' );
assert.ok( x[ '_secretNameButPublicState' ] === 'Bob2', 'applyState nonunderscore key + underscore core' );
assert.ok( !x.hasOwnProperty( 'secretNameButPublicState' ), 'do not write a bad field secretNameButPublicState' );
} );
} );
2 changes: 1 addition & 1 deletion js/types/InfiniteNumberIOTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ QUnit.test( 'serialization', assert => {
// @ts-expect-error INTENTIONAL for testing
InfiniteNumberIO.toStateObject( 'oh hello' );
} );
} );
} );

0 comments on commit 336f03f

Please sign in to comment.