From 0376341ec4bff358cbd2eea4e796ca5948db55c3 Mon Sep 17 00:00:00 2001 From: Johannes Ewald Date: Wed, 29 Aug 2018 11:51:02 +0200 Subject: [PATCH] feat: Enforce eol-last Closes https://github.com/peerigon/eslint-config-peerigon/issues/45 BREAKING CHANGE: Enforce [eol-last](https://eslint.org/docs/rules/eol-last) --- base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base.js b/base.js index 7df4f88..7b0c131 100644 --- a/base.js +++ b/base.js @@ -111,7 +111,7 @@ module.exports = { "dot-location": ["error", "property"], // http://eslint.org/docs/rules/dot-location // We don't support ES3 envs anymore, so allowKeywords: true is ok "dot-notation": ["error", {allowKeywords: true}], // http://eslint.org/docs/rules/dot-notation - "eol-last": "off", // http://eslint.org/docs/rules/eol-last + "eol-last": ["error", "always"], // http://eslint.org/docs/rules/eol-last "eqeqeq": ["warn", "always"], // http://eslint.org/docs/rules/eqeqeq "for-direction": "error", // http://eslint.org/docs/rules/for-direction "func-call-spacing": ["error", "never"], // http://eslint.org/docs/rules/func-call-spacing