From 9fe8b9b677aa1886e223da85adb8a4a88dc52c05 Mon Sep 17 00:00:00 2001 From: "S. Elliott Johnson" Date: Mon, 8 May 2023 22:42:00 -0600 Subject: [PATCH] Lint and format src/shared/boolean_attributes.js --- src/shared/boolean_attributes.js | 52 +++++++++++++++----------------- 1 file changed, 25 insertions(+), 27 deletions(-) diff --git a/src/shared/boolean_attributes.js b/src/shared/boolean_attributes.js index 85fce1fbb0..373895b1f1 100644 --- a/src/shared/boolean_attributes.js +++ b/src/shared/boolean_attributes.js @@ -1,29 +1,29 @@ const _boolean_attributes = [ - 'allowfullscreen', - 'allowpaymentrequest', - 'async', - 'autofocus', - 'autoplay', - 'checked', - 'controls', - 'default', - 'defer', - 'disabled', - 'formnovalidate', - 'hidden', - 'inert', - 'ismap', - 'loop', - 'multiple', - 'muted', - 'nomodule', - 'novalidate', - 'open', - 'playsinline', - 'readonly', - 'required', - 'reversed', - 'selected' + 'allowfullscreen', + 'allowpaymentrequest', + 'async', + 'autofocus', + 'autoplay', + 'checked', + 'controls', + 'default', + 'defer', + 'disabled', + 'formnovalidate', + 'hidden', + 'inert', + 'ismap', + 'loop', + 'multiple', + 'muted', + 'nomodule', + 'novalidate', + 'open', + 'playsinline', + 'readonly', + 'required', + 'reversed', + 'selected' ]; /** * List of HTML boolean attributes (e.g. ``). @@ -32,6 +32,4 @@ const _boolean_attributes = [ */ export const boolean_attributes = new Set([..._boolean_attributes]); - /** @typedef {Class<_boolean_attributes>} BooleanAttributes */ -