From 76d9d32dceab27115836267ce982db3df7cd3286 Mon Sep 17 00:00:00 2001 From: tophf Date: Fri, 12 Jan 2018 15:01:13 +0300 Subject: [PATCH] skip uso-var between declarations --- vendor-overwrites/csslint/parserlib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor-overwrites/csslint/parserlib.js b/vendor-overwrites/csslint/parserlib.js index dbf6490c..69616c61 100644 --- a/vendor-overwrites/csslint/parserlib.js +++ b/vendor-overwrites/csslint/parserlib.js @@ -5182,7 +5182,7 @@ self.parserlib = (() => { try { while (stream.peek() !== Tokens.RBRACE) { - this._ws(); + this._ws(true); if (stream.match(Tokens.SEMICOLON) || readMargins && this._margin()) continue; if (!this._declaration(true)) break; }