Skip to content

Commit 986632e

Browse files
committed
Merge branch 'develop'
2 parents cb88922 + 4d69e24 commit 986632e

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Gruntfile.coffee

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ npm install lesshint-lint-xml-reporter
1414
Use [lesshint](https://github.com/lesshint/lesshint) with `-r` or `--reporter` option:
1515

1616
```bash
17-
lesshint --reporter lint-xml file.less
18-
lesshint --reporter /path/to/lesshint-lint-xml-reporter/lint-xml .js file.less
17+
lesshint --reporter lesshint-lint-xml-reporter file.less
18+
lesshint --reporter /path/to/lesshint-lint-xml-reporter/reporter.js file.less
1919
```

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "lesshint-lint-xml-reporter",
33
"description": "A lesshint reporter compatible with csslint's xml-lint format. Can be used by Jenkins.",
4-
"version": "0.9.0",
5-
"main": "./less-xml.js",
4+
"version": "0.9.1",
5+
"main": "./reporter.js",
66
"homepage": "https://github.com/llaumgui/lesshint-lint-xml-reporter",
77
"author": {
88
"name": "Guillaume Kulakowski",
@@ -36,4 +36,4 @@
3636
"bugs": {
3737
"url": "https://github.com/llaumgui/lesshint-lint-xml-reporter/issues"
3838
}
39-
}
39+
}

lint-xml.js renamed to reporter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
'use strict';
44
module.exports = {
5-
name: 'lint-xml',
5+
name: 'lesshint-lint-xml-reporter',
66
report: function report (results) {
77
var resultsByfiles = {};
88
var output = '';

0 commit comments

Comments
 (0)