summaryrefslogtreecommitdiff
path: root/test/data
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-16 20:04:56 -0500
committerGitHub <noreply@github.com>2023-12-17 01:04:56 +0000
commitb249627434d3a94420ac4d98c3ce720767e57b43 (patch)
treeec46e2c020c5a63a5c2babf56376f53e288ed7f2 /test/data
parentdecbc60f7734e739c0e5c41da294f65f9eec92fe (diff)
Update eslint spacing rules (#366)
* Add space-infix-ops rule * Add no-multi-spaces --------- Co-authored-by: Darius Jahandarie <djahandarie@gmail.com>
Diffstat (limited to 'test/data')
-rw-r--r--test/data/html/test-document2-script.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/html/test-document2-script.js b/test/data/html/test-document2-script.js
index f6082802..d8e1278d 100644
--- a/test/data/html/test-document2-script.js
+++ b/test/data/html/test-document2-script.js
@@ -87,7 +87,7 @@ function toggleFullscreen(element) {
* @param {HTMLElement|DocumentFragment} container
* @param {?Element} [fullscreenElement]
*/
-function setup(container, fullscreenElement=null) {
+function setup(container, fullscreenElement = null) {
const fullscreenLink = container.querySelector('.fullscreen-link');
if (fullscreenLink !== null) {
if (fullscreenElement === null) {