Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
llaumgui committed Jun 30, 2016
2 parents cb88922 + 4d69e24 commit 986632e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Gruntfile.coffee
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ npm install lesshint-lint-xml-reporter
Use [lesshint](https://github.com/lesshint/lesshint) with `-r` or `--reporter` option:

```bash
lesshint --reporter lint-xml file.less
lesshint --reporter /path/to/lesshint-lint-xml-reporter/lint-xml .js file.less
lesshint --reporter lesshint-lint-xml-reporter file.less
lesshint --reporter /path/to/lesshint-lint-xml-reporter/reporter.js file.less
```
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "lesshint-lint-xml-reporter",
"description": "A lesshint reporter compatible with csslint's xml-lint format. Can be used by Jenkins.",
"version": "0.9.0",
"main": "./less-xml.js",
"version": "0.9.1",
"main": "./reporter.js",
"homepage": "https://github.com/llaumgui/lesshint-lint-xml-reporter",
"author": {
"name": "Guillaume Kulakowski",
Expand Down Expand Up @@ -36,4 +36,4 @@
"bugs": {
"url": "https://github.com/llaumgui/lesshint-lint-xml-reporter/issues"
}
}
}
2 changes: 1 addition & 1 deletion lint-xml.js → reporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

'use strict';
module.exports = {
name: 'lint-xml',
name: 'lesshint-lint-xml-reporter',
report: function report (results) {
var resultsByfiles = {};
var output = '';
Expand Down

0 comments on commit 986632e

Please sign in to comment.