diff --git a/eslint/rules/phet-io-object-options-should-not-pick-from-phet-io-object.js b/eslint/rules/phet-io-object-options-should-not-pick-from-phet-io-object.js index e984f8c73..acddc7087 100644 --- a/eslint/rules/phet-io-object-options-should-not-pick-from-phet-io-object.js +++ b/eslint/rules/phet-io-object-options-should-not-pick-from-phet-io-object.js @@ -1,5 +1,9 @@ // Copyright 2023, University of Colorado Boulder +/** + * @author Same Reid (PhET Interactive Simulations) + */ + module.exports = { create( context ) { return { diff --git a/js/data/updateLocaleInfo.js b/js/data/updateLocaleInfo.js index cbb99da66..07e759411 100644 --- a/js/data/updateLocaleInfo.js +++ b/js/data/updateLocaleInfo.js @@ -1,5 +1,8 @@ // Copyright 2024, University of Colorado Boulder +/** + * @author Matt Pennington (PhET Interactive Simulations) + */ const child_process = require( 'child_process' ); const fs = require( 'fs' ); diff --git a/js/phet-io/phetioCompareAPISets.js b/js/phet-io/phetioCompareAPISets.js index 1a46a2cf5..d06276ca0 100644 --- a/js/phet-io/phetioCompareAPISets.js +++ b/js/phet-io/phetioCompareAPISets.js @@ -1,4 +1,9 @@ // Copyright 2021-2023, University of Colorado Boulder + +/** + * @author Same Reid (PhET Interactive Simulations) + */ + const fs = require( 'fs' ); const phetioCompareAPIs = require( './phetioCompareAPIs' ); const _ = require( 'lodash' ); diff --git a/js/scripts/quackage.js b/js/scripts/quackage.js index 0c2ede91d..826938d77 100644 --- a/js/scripts/quackage.js +++ b/js/scripts/quackage.js @@ -1,5 +1,9 @@ // Copyright 2022, University of Colorado Boulder +/** + * @author Same Reid (PhET Interactive Simulations) + */ + const fs = require( 'fs' ); const path = require( 'path' ); diff --git a/js/scripts/scenery-imports.js b/js/scripts/scenery-imports.js index be0767550..8176a1ac1 100644 --- a/js/scripts/scenery-imports.js +++ b/js/scripts/scenery-imports.js @@ -1,4 +1,9 @@ // Copyright 2021-2022, University of Colorado Boulder + +/** + * @author Same Reid (PhET Interactive Simulations) + */ + const fs = require( 'fs' ); const keyLines = fs.readFileSync( '../scenery/js/imports.ts', 'utf-8' ).split( '\n' ); diff --git a/js/sim-tests/qunitStart.js b/js/sim-tests/qunitStart.js index 0f6a3e640..e1b01d145 100644 --- a/js/sim-tests/qunitStart.js +++ b/js/sim-tests/qunitStart.js @@ -1,10 +1,13 @@ // Copyright 2020-2021, University of Colorado Boulder -import Tandem from '../../../tandem/js/Tandem.js'; - /** * Start Qunit while supporting PhET-iO brand + * + * @author Michael Kauzmann (PhET Interactive Simulations) */ + +import Tandem from '../../../tandem/js/Tandem.js'; + const qunitStart = () => { const start = () => {