Skip to content

Commit

Permalink
sort imports by module name in TypeScript too, phetsims/chipper#1462
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Kauzmann <[email protected]>
  • Loading branch information
zepumph committed Sep 23, 2024
1 parent bfa9283 commit 3e3396e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/generator-main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
* @author Chris Malley (PixelZoom, Inc.)
*/

import FELSim from '../../faradays-electromagnetic-lab/js/common/FELSim.js';
import FELPreferences from '../../faradays-electromagnetic-lab/js/common/model/FELPreferences.js';
import GeneratorScreen from '../../faradays-electromagnetic-lab/js/generator/GeneratorScreen.js';
import simLauncher from '../../joist/js/simLauncher.js';
import Tandem from '../../tandem/js/Tandem.js';
import GeneratorStrings from './GeneratorStrings.js';
import GeneratorScreen from '../../faradays-electromagnetic-lab/js/generator/GeneratorScreen.js';
import FELSim from '../../faradays-electromagnetic-lab/js/common/FELSim.js';
import FELPreferences from '../../faradays-electromagnetic-lab/js/common/model/FELPreferences.js';

simLauncher.launch( () => {
const titleStringProperty = GeneratorStrings.generator.titleStringProperty;
Expand Down

0 comments on commit 3e3396e

Please sign in to comment.