Skip to content

Commit

Permalink
add member-delimiter-style lint rule (semi colons after member declar…
Browse files Browse the repository at this point in the history
…ations in types). phetsims/chipper#1210
  • Loading branch information
zepumph committed Mar 23, 2022
1 parent d98314d commit f2dbe97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/sound-generators/ValueChangeSoundGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ type SelfOptions = {

// The minimum amount of time that must pass after a middle sound is played before another can be played. This is
// helpful when a lot of value changes can occur rapidly and thus create an overwhelming amount of sound.
minimumInterMiddleSoundTime?: number,
minimumInterMiddleSoundTime?: number;
};

export type ValueChangeSoundGeneratorOptions = SelfOptions & SoundGeneratorOptions;
Expand Down

0 comments on commit f2dbe97

Please sign in to comment.