To install for local project:
npm install stylint-teamcity-reporter --save
You need to set reporter to stylint-teamcity-reporter
stylint --reporter stylint-teamcity-reporter path/to/filename.stylYou need to set reporter to stylint-teamcity-reporter in config object.
{
"reporter": "stylint-teamcity-reporter",
"reporterOptions": {
"reportSeverity": "error"
}
}Possible values for reportSeverity are:
all- Report all messages, by defaultwarning- Report only warningserror- Report only errors