From 2851424392c2347511213f52fa9216febf9f8341 Mon Sep 17 00:00:00 2001 From: Steven Evans Date: Mon, 9 Jul 2018 23:46:37 -0400 Subject: [PATCH] [style] Enabled Stylelint 'no-missing-end-of-source-newline' rule --- css/loader.css | 2 +- stylelint.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/css/loader.css b/css/loader.css index 606ddcaf5..3c3681e6d 100644 --- a/css/loader.css +++ b/css/loader.css @@ -145,4 +145,4 @@ button[type="button"] { } .loaderoverlay .loaderlabel { color: #6f3; -} \ No newline at end of file +} diff --git a/stylelint.config.js b/stylelint.config.js index d5be9dbb8..dda50f47b 100644 --- a/stylelint.config.js +++ b/stylelint.config.js @@ -127,7 +127,7 @@ module.exports = { "no-eol-whitespace": true, "no-extra-semicolons": true, "no-invalid-double-slash-comments": true, -// "no-missing-end-of-source-newline": true, + "no-missing-end-of-source-newline": true, "no-unknown-animations": true, "number-leading-zero": "always", "number-max-precision": [3, { ignoreUnits: [ "%" ] }],