mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-02-16 16:58:38 +01:00
No description
Summary: Similar to D11198. This flag doesn't do anything when combined with `--format=lint-xml`. Test Plan: ```lang=bash > 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> ``` Reviewers: chad, #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11308 |
||
---|---|---|
bin | ||
externals | ||
resources | ||
scripts | ||
src | ||
.arcconfig | ||
.arclint | ||
.editorconfig | ||
.gitignore | ||
LICENSE | ||
NOTICE | ||
README |
= WHAT IS ARCANIST? = Arcanist is the command-line tool for [[http://phabricator.org/ | Phabricator]]. It allows you to interact with Phabricator installs to send code for review, download patches, transfer files, view status, make API calls, and various other things. You can find a complete user guide [[http://www.phabricator.com/docs/phabricator/article/Arcanist_User_Guide.html | here]]. For more information about Phabricator, see http://phabricator.org/. = LICENSE = Arcanist is released under the Apache 2.0 license except as otherwise noted.