Skip to content

Commit

Permalink
fix bad text lint rules by testing with code tokens and strings, phet…
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 25, 2019
1 parent 2b57296 commit 210d0aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/TinyEmitter.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ define( require => {
// Support for a query parameter that shuffles listeners, but bury behind assert so it will be stripped out on build
// so it won't impact production performance.
if ( assert && shuffleListeners ) {
this.listeners = _.shuffle( this.listeners );
this.listeners = _.shuffle( this.listeners ); // eslint-disable-line bad-sim-text
}

// Notify wired-up listeners, if any
Expand Down

0 comments on commit 210d0aa

Please sign in to comment.