Skip to content

Commit 15f240b

Browse files
committed
update files
1 parent 14654aa commit 15f240b

File tree

5 files changed

+23
-30
lines changed

5 files changed

+23
-30
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ root = true
1010
charset = utf-8
1111

1212
indent_style = space
13-
indent_size = 4
13+
indent_size = 2
1414

1515
end_of_line = lf
1616
insert_final_newline = true

.travis.yml

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
sudo: false
2-
32
language: node_js
4-
node_js:
5-
- "0.10"
6-
- "0.12"
7-
- "4.1"
8-
93
cache:
104
directories:
11-
- node_modules
12-
13-
matrix:
14-
fast_finish: true
15-
16-
script: "grunt"
5+
- ~/.npm
6+
node_js:
7+
- '10'
8+
- '9'
9+
- '8'
10+
- '6'
11+
install:
12+
- npm install -g codecov
13+
- npm install
14+
script:
15+
- 'grunt'
16+
- codecov
17+
branches:
18+
only:
19+
- master
20+
- /^greenkeeper/.*$/
21+
except:
22+
- /^v\d+\.\d+\.\d+$/

Gruntfile.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
/*
2-
* grunt-htmlhint
3-
* https://github.com/yaniswang/grunt-htmlhint
4-
*
5-
* Copyright (c) 2013 Yanis Wang
6-
* Licensed under the MIT license.
7-
*/
8-
91
'use strict';
102

113
module.exports = function(grunt) {
File renamed without changes.

package.json

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,18 @@
22
"name": "grunt-htmlhint",
33
"description": "Validate html files with htmlhint.",
44
"version": "0.9.13",
5-
"homepage": "https://github.com/yaniswang/grunt-htmlhint",
6-
"author": {
7-
"name": "Yanis Wang",
8-
"email": "yanis.wang@gmail.com",
9-
"url": "http://yaniswang.com/"
10-
},
5+
"homepage": "https://github.com/htmlhint/grunt-htmlhint",
116
"repository": {
127
"type": "git",
13-
"url": "git@github.com:yaniswang/grunt-htmlhint.git"
8+
"url": "git@github.com:htmlhint/grunt-htmlhint.git"
149
},
1510
"bugs": {
16-
"url": "https://github.com/yaniswang/grunt-htmlhint/issues"
11+
"url": "https://github.com/htmlhint/grunt-htmlhint/issues"
1712
},
1813
"licenses": [
1914
{
2015
"type": "MIT",
21-
"url": "https://github.com/yaniswang/grunt-htmlhint/blob/master/LICENSE-MIT"
16+
"url": "https://github.com/htmlhint/grunt-htmlhint/blob/master/LICENSE.md"
2217
}
2318
],
2419
"main": "Gruntfile.js",

0 commit comments

Comments
 (0)