Page MenuHomePhabricator

Don't pass `--quiet` to `csslint`
ClosedPublic

Authored by joshuaspence on Jan 10 2015, 7:34 AM.
Tags
None
Referenced Files
F13211435: D11308.diff
Fri, May 17, 5:45 AM
F13195156: D11308.diff
Sun, May 12, 10:10 PM
F13177946: D11308.diff
Wed, May 8, 8:04 PM
Unknown Object (File)
Thu, Apr 25, 1:03 AM
Unknown Object (File)
Apr 9 2024, 11:02 AM
Unknown Object (File)
Mar 31 2024, 2:31 AM
Unknown Object (File)
Jan 4 2024, 9:50 PM
Unknown Object (File)
Dec 27 2023, 5:57 PM
Subscribers

Details

Summary

Similar to D11198. This flag doesn't do anything when combined with --format=lint-xml.

Test Plan
> csslint *.css
csslint *.css

csslint: There are 1 problems in /home/joshua/workspace/github.com/phacility/arcanist/fail.css.

fail.css
1: error at line 1, col 1
Unexpected token '~' at line 1, col 1.
~

csslint: No errors in /home/joshua/workspace/github.com/phacility/arcanist/pass.css.

> csslint --quiet *.css
csslint --quiet *.css

csslint: There are 1 problems in /home/joshua/workspace/github.com/phacility/arcanist/fail.css.

fail.css
1: error at line 1, col 1
Unexpected token '~' at line 1, col 1.
~

> csslint --format=lint-xml *.css
<?xml version="1.0" encoding="utf-8"?><lint>
<file name="/home/joshua/workspace/github.com/phacility/arcanist/fail.css"><issue line="1" char="1" severity="error" reason="Unexpected token '~' at line 1, col 1." evidence="~"/></file>
</lint>

> csslint --format=lint-xml --quiet *.css
<?xml version="1.0" encoding="utf-8"?><lint>
<file name="/home/joshua/workspace/github.com/phacility/arcanist/fail.css"><issue line="1" char="1" severity="error" reason="Unexpected token '~' at line 1, col 1." evidence="~"/></file>
</lint>

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

joshuaspence retitled this revision from to Don't pass `--quiet-` to `csslint`.
joshuaspence updated this object.
joshuaspence edited the test plan for this revision. (Show Details)
joshuaspence added a reviewer: epriestley.
joshuaspence retitled this revision from Don't pass `--quiet-` to `csslint` to Don't pass `--quiet` to `csslint`.Jan 11 2015, 4:32 AM
joshuaspence edited edge metadata.
epriestley edited edge metadata.
This revision is now accepted and ready to land.Jan 11 2015, 5:39 PM
This revision was automatically updated to reflect the committed changes.