diff --git a/core/.eslintrc.passing.json b/core/.eslintrc.passing.json
index 253aee9da5ffb5223e690104f302e706a369bdf4..a7b1dbaa4b975c7f9e3ae19bb1372dfe158a434f 100644
--- a/core/.eslintrc.passing.json
+++ b/core/.eslintrc.passing.json
@@ -22,7 +22,6 @@
     "array-callback-return": "off",
     "vars-on-top": "off",
     "prefer-rest-params": "off",
-    "padded-blocks": "off",
     "prefer-const": "off"
   }
 }
diff --git a/core/misc/form.es6.js b/core/misc/form.es6.js
index 8f535dac8aeae83943097b4fc787f498b21918dd..8004125bd6dc92e51bddd2510cf9177fb1e3785c 100644
--- a/core/misc/form.es6.js
+++ b/core/misc/form.es6.js
@@ -297,5 +297,4 @@
    * is already in the URL.
    */
   $(document).on('click.form-fragment', 'a[href*="#"]', debouncedHandleFragmentLinkClickOrHashChange);
-
 }(jQuery, Drupal, Drupal.debounce));
diff --git a/core/modules/settings_tray/js/settings_tray.es6.js b/core/modules/settings_tray/js/settings_tray.es6.js
index b4edd840c591df83ea42ff2c1284033f473c2996..7ce08dabb866d813bc415c75a0c120fc6f6aa6c8 100644
--- a/core/modules/settings_tray/js/settings_tray.es6.js
+++ b/core/modules/settings_tray/js/settings_tray.es6.js
@@ -159,7 +159,6 @@
    * @listens event:drupalContextualLinkAdded
    */
   $(document).on('drupalContextualLinkAdded', (event, data) => {
-
     // When the first contextual link is added to the page set Edit Mode.
     $('body').once('settings_tray.edit_mode_init').each(() => {
       const editMode = localStorage.getItem('Drupal.contextualToolbar.isViewing') === 'false';