diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2021-06-07 00:58:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 00:58:12 +0200 |
commit | 70dae67b73dfea9126f126f516fe8286f1e73417 (patch) | |
tree | e61eafab41ee74330fecf1da2ce125050cfac49b /tests/unit/accordion | |
parent | a12c98574d07f002fd59d166f9fc1fd391581b91 (diff) | |
download | jquery-ui-70dae67b73dfea9126f126f516fe8286f1e73417.tar.gz jquery-ui-70dae67b73dfea9126f126f516fe8286f1e73417.zip |
Build: Migrate from JSHint & JSCS to ESLint
Fixes #15393
Closes gh-1958
Diffstat (limited to 'tests/unit/accordion')
-rw-r--r-- | tests/unit/accordion/core.js | 1 | ||||
-rw-r--r-- | tests/unit/accordion/events.js | 1 | ||||
-rw-r--r-- | tests/unit/accordion/helper.js | 1 | ||||
-rw-r--r-- | tests/unit/accordion/methods.js | 1 | ||||
-rw-r--r-- | tests/unit/accordion/options.js | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/tests/unit/accordion/core.js b/tests/unit/accordion/core.js index ad7177b8f..7436ba7a9 100644 --- a/tests/unit/accordion/core.js +++ b/tests/unit/accordion/core.js @@ -4,6 +4,7 @@ define( [ "./helper", "ui/widgets/accordion" ], function( QUnit, $, testHelper ) { +"use strict"; var beforeAfterEach = testHelper.beforeAfterEach, state = testHelper.state; diff --git a/tests/unit/accordion/events.js b/tests/unit/accordion/events.js index 5b8525132..2c5e791a1 100644 --- a/tests/unit/accordion/events.js +++ b/tests/unit/accordion/events.js @@ -4,6 +4,7 @@ define( [ "./helper", "ui/widgets/accordion" ], function( QUnit, $, testHelper ) { +"use strict"; var beforeAfterEach = testHelper.beforeAfterEach, state = testHelper.state; diff --git a/tests/unit/accordion/helper.js b/tests/unit/accordion/helper.js index 3211765af..b50c389e2 100644 --- a/tests/unit/accordion/helper.js +++ b/tests/unit/accordion/helper.js @@ -4,6 +4,7 @@ define( [ "lib/helper", "ui/widgets/accordion" ], function( QUnit, $, helper ) { +"use strict"; return $.extend( helper, { equalHeight: function( assert, accordion, height ) { diff --git a/tests/unit/accordion/methods.js b/tests/unit/accordion/methods.js index 622235785..e4ab62ffb 100644 --- a/tests/unit/accordion/methods.js +++ b/tests/unit/accordion/methods.js @@ -4,6 +4,7 @@ define( [ "./helper", "ui/widgets/accordion" ], function( QUnit, $, testHelper ) { +"use strict"; var equalHeight = testHelper.equalHeight, beforeAfterEach = testHelper.beforeAfterEach, diff --git a/tests/unit/accordion/options.js b/tests/unit/accordion/options.js index ae53e5c45..00c1d0361 100644 --- a/tests/unit/accordion/options.js +++ b/tests/unit/accordion/options.js @@ -4,6 +4,7 @@ define( [ "./helper", "ui/widgets/accordion" ], function( QUnit, $, testHelper ) { +"use strict"; var equalHeight = testHelper.equalHeight, beforeAfterEach = testHelper.beforeAfterEach, |