From 210d0aa7ff3e64a69a1d4d7134c7c50c2f24e277 Mon Sep 17 00:00:00 2001 From: zepumph Date: Thu, 24 Oct 2019 20:55:19 -0800 Subject: [PATCH] fix bad text lint rules by testing with code tokens and strings, https://github.com/phetsims/chipper/issues/791 --- js/TinyEmitter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/TinyEmitter.js b/js/TinyEmitter.js index 96102162..b8c30644 100644 --- a/js/TinyEmitter.js +++ b/js/TinyEmitter.js @@ -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