Skip to content

Commit 40abd91

Browse files
committed
1.4.0 - add lint format
1 parent 697daed commit 40abd91

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@
77
88
---
99

10+
## [1.4.0] - 2019.11.16
11+
12+
- [[697daed](https://github.com/dutchenkoOleg/node-w3c-validator/commit/697daed702d7685bf8ebc4a574ff2231c7f7a484)] - 1.4.0 - add lint format
13+
- [[4d0cef6](https://github.com/dutchenkoOleg/node-w3c-validator/commit/4d0cef6551b5c7384d65fc95d3f414f389866886)] - 1.3.5 - Add github action
14+
- [[0c9a65e](https://github.com/dutchenkoOleg/node-w3c-validator/commit/0c9a65ea37e366becfca19ceb1145b7e6e27bdd0)] - Merge pull request #11
15+
- [[7bf7675](https://github.com/dutchenkoOleg/node-w3c-validator/commit/7bf7675798b19abc0aabacf757a48d91000b4258)] - Merge pull request #10
16+
- [[fb283ed](https://github.com/dutchenkoOleg/node-w3c-validator/commit/fb283ed00ed542b473634c23de24982a53797c5f)] - 1.3.0
17+
18+
---
19+
1020
## [1.2.1] - 2018.09.28
1121

1222
- [[02eb617](https://github.com/dutchenkoOleg/node-w3c-validator/commit/02eb617626bca3ca6bce14bd1824d7a26a2a3bac)] - remove correction of absolute path

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ default: `unset`
7272
possible values: `gnu | xml | json | text | html | lint`
7373

7474
> `lint` format is available from 1.4.0 version.
75-
> `lint` format is designed for convenient error output to the terminal.
75+
> `lint` format is designed for convenient error output to the terminal.
76+
> it uses a [eslint-formatter-pretty](https://github.com/sindresorhus/eslint-formatter-pretty#readme) under the hood
7677
7778

7879
![lint format screenshot](./tests/assets/lint-format-screenshot.png)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"test": "happiness --verbose | snazzy",
88
"cli-html": "node ./bin/cmd.js -i ./tests/**/*.html -f html -o ./results/cli-api-report.html",
9-
"cli-lint": "node ./bin/cmd.js -i ./tests/**/*.html -f lint -e",
9+
"cli-lint": "node ./bin/cmd.js -i ./tests/**/*.html -f lint",
1010
"nodejs-api": "node ./tests/demo.js",
1111
"code-style": "happiness --verbose --fix | snazzy"
1212
},
24.4 KB
Loading

tests/html/example2.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta charset="utf-8" />
88
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
99
<meta name="viewport" content="width=device-width, initial-scale=1" />
10-
<style type="text/css">
10+
<style>
1111
body {
1212
background-color: #f0f0f2;
1313
margin: 0;

0 commit comments

Comments
 (0)