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 53b2fb7 commit f65d22b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions js/AtomIdentifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
* @author Luisa Vargas
*/

import TinyProperty from '../../axon/js/TinyProperty.js';
import TProperty from '../../axon/js/TProperty.js';
import Utils from '../../dot/js/Utils.js';
import type NumberAtom from './model/NumberAtom.js';
import shred from './shred.js';
import ShredStrings from './ShredStrings.js';
import type NumberAtom from './model/NumberAtom.js';
import TinyProperty from '../../axon/js/TinyProperty.js';
import TProperty from '../../axon/js/TProperty.js';

// An arbitrary value used to signify a 'trace' abundance, meaning that a very small amount of this isotope is
// present on Earth.
Expand Down
2 changes: 1 addition & 1 deletion js/ShredConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

import PhetColorScheme from '../../scenery-phet/js/PhetColorScheme.js';
import PhetFont from '../../scenery-phet/js/PhetFont.js';
import shred from './shred.js';
import { TColor } from '../../scenery/js/imports.js';
import shred from './shred.js';

type Level = 'periodic-table-game' | 'mass-and-charge-game' | 'symbol-game' | 'advanced-symbol-game';

Expand Down

0 comments on commit f65d22b

Please sign in to comment.