File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change
1
+ Gruntfile.coffee
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ npm install lesshint-lint-xml-reporter
14
14
Use [ lesshint] ( https://github.com/lesshint/lesshint ) with ` -r ` or ` --reporter ` option:
15
15
16
16
``` 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
19
19
```
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " lesshint-lint-xml-reporter" ,
3
3
"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" ,
6
6
"homepage" : " https://github.com/llaumgui/lesshint-lint-xml-reporter" ,
7
7
"author" : {
8
8
"name" : " Guillaume Kulakowski" ,
36
36
"bugs" : {
37
37
"url" : " https://github.com/llaumgui/lesshint-lint-xml-reporter/issues"
38
38
}
39
- }
39
+ }
Original file line number Diff line number Diff line change 2
2
3
3
'use strict' ;
4
4
module . exports = {
5
- name : 'lint-xml' ,
5
+ name : 'lesshint- lint-xml-reporter ' ,
6
6
report : function report ( results ) {
7
7
var resultsByfiles = { } ;
8
8
var output = '' ;
You can’t perform that action at this time.
0 commit comments