juanfran / gulp-scss-lint

Gulp plugin to lint scss files with `scss-lint`
113 stars 33 forks source link

XML Formatter removed from scss-lint #32

Closed frontendbeast closed 9 years ago

frontendbeast commented 9 years ago

A recent commit in scss-lint has removed the XML formatter, which in turn breaks gulp-scss-lint as --format=XML is now an invalid output format.

[21:32:41] Error: Error in plugin 'gulp-scss-lint'
Message:
    Command line usage error
Invalid output format specified: XML
JohnAlbin commented 9 years ago

ugh. Experiencing this now.

JohnAlbin commented 9 years ago

And… this is fixed by using 0.2.0. :-) Nice work!

Changed my package.json:

"gulp-scss-lint": "^0.1.12",

to:

"gulp-scss-lint": "^0.2.0",
JohnAlbin commented 9 years ago

@juanfran++