From cb5122730f025ef084c4d08266c291c13551ed1c Mon Sep 17 00:00:00 2001 From: k88hudson Date: Tue, 5 Feb 2019 10:27:34 -0500 Subject: [PATCH] Backport Bug 1518283 - prohibit blank lines at the beginning and end of blocks (eslint padded-blocks) --- .eslintrc.js | 1 - 1 file changed, 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index c889145c0..2d7febb56 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -203,7 +203,6 @@ module.exports = { "one-var-declaration-per-line": [2, "initializations"], "operator-assignment": [2, "always"], "operator-linebreak": [2, "after"], - "padded-blocks": [2, "never"], "padding-line-between-statements": 0, "prefer-arrow-callback": ["error", {"allowNamedFunctions": true}], "prefer-const": 0, // TODO: Change to `1`?