-
-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean README and remove unecessary files
- Loading branch information
1 parent
77378f7
commit 4535935
Showing
6 changed files
with
52 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
node_modules | ||
coverage | ||
npm-debug.log | ||
.DS_Store | ||
node_modules/ | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
test/unit/coverage | ||
test/e2e/reports | ||
selenium-debug.log | ||
dist/ | ||
.tmp/ | ||
coverage | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
MIT License | ||
|
||
The MIT License | ||
================ | ||
|
||
Copyright (c) 2014-2016 Yanis Wang \<[email protected]\> | ||
Copyright (c) 2018 David Dias (Thanks to the initial contributor Yanis Wan) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -11,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,14 @@ | ||
HTMLHint | ||
======================= | ||
# HTMLHint | ||
|
||
![HTMLHint logo](https://raw.github.com/yaniswang/HTMLHint/master/logo.png) | ||
|
||
HTMLHint is a Static Code Analysis Tool for HTML, you can use it with IDE or in build system. | ||
|
||
[![Build Status](https://img.shields.io/travis/yaniswang/HTMLHint.svg)](https://travis-ci.org/yaniswang/HTMLHint) | ||
[![Coverage Status](https://img.shields.io/coveralls/yaniswang/HTMLHint.svg)](https://coveralls.io/github/yaniswang/HTMLHint?branch=master) | ||
[![Build Status](https://img.shields.io/travis/thedaviddias/HTMLHint.svg)](https://travis-ci.org/thedaviddias/HTMLHint) | ||
[![Coverage Status](https://img.shields.io/coveralls/thedaviddias/HTMLHint.svg)](https://coveralls.io/github/thedaviddias/HTMLHint?branch=master) | ||
[![NPM version](https://img.shields.io/npm/v/htmlhint.svg?style=flat)](https://www.npmjs.com/package/htmlhint) | ||
[![License](https://img.shields.io/npm/l/htmlhint.svg?style=flat)](https://www.npmjs.com/package/htmlhint) | ||
[![NPM count](https://img.shields.io/npm/dm/htmlhint.svg?style=flat)](https://www.npmjs.com/package/htmlhint) | ||
[![NPM count](https://img.shields.io/npm/dt/htmlhint.svg?style=flat)](https://www.npmjs.com/package/htmlhint) | ||
[![License](https://img.shields.io/npm/l/htmlhint.svg?style=flat)](https://www.npmjs.com/package/htmlhint) | ||
|
||
Official Site: [http://htmlhint.com/](http://htmlhint.com/) | ||
HTMLHint is a Static Code Analysis Tool for HTML, you can use it with IDE or in build system. | ||
|
||
Quick start | ||
====================== | ||
## Getting started | ||
|
||
1. install & hint | ||
|
||
|
@@ -61,51 +54,29 @@ Quick start | |
<head> | ||
... | ||
|
||
Guide | ||
======================= | ||
## Guide | ||
|
||
1. [How to use](https://github.com/yaniswang/HTMLHint/wiki/Usage) | ||
2. [All Rules](https://github.com/yaniswang/HTMLHint/wiki/Rules) | ||
2. [How to Develop](https://github.com/yaniswang/HTMLHint/wiki/Developer-guide) | ||
|
||
License | ||
================ | ||
|
||
HTMLHint is released under the MIT license: | ||
|
||
> The MIT License | ||
> | ||
> Copyright (c) 2014-2016 Yanis Wang \< [email protected] \> | ||
> | ||
> Permission is hereby granted, free of charge, to any person obtaining a copy | ||
> of this software and associated documentation files (the "Software"), to deal | ||
> in the Software without restriction, including without limitation the rights | ||
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
> copies of the Software, and to permit persons to whom the Software is | ||
> furnished to do so, subject to the following conditions: | ||
> | ||
> The above copyright notice and this permission notice shall be included in | ||
> all copies or substantial portions of the Software. | ||
> | ||
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
> THE SOFTWARE. | ||
Thanks | ||
================ | ||
|
||
* mocha: [https://github.com/visionmedia/mocha](https://github.com/visionmedia/mocha) | ||
* expect.js: [https://github.com/LearnBoost/expect.js](https://github.com/LearnBoost/expect.js) | ||
* istanbul: [https://github.com/gotwarlost/istanbul](https://github.com/gotwarlost/istanbul) | ||
* Grunt: [http://gruntjs.com/](http://gruntjs.com/) | ||
* commander.js: [https://github.com/visionmedia/commander.js](https://github.com/visionmedia/commander.js) | ||
* colors.js: [https://github.com/Marak/colors.js](https://github.com/Marak/colors.js) | ||
* glob: [https://github.com/isaacs/node-glob](https://github.com/isaacs/node-glob) | ||
* jshint: [https://github.com/jshint/jshint](https://github.com/jshint/jshint) | ||
* csslint: [https://github.com/stubbornella/csslint](https://github.com/stubbornella/csslint) | ||
* request: [https://github.com/request/request](https://github.com/request/request) | ||
* GitHub: [https://github.com/](https://github.com/) | ||
## License | ||
|
||
[The MIT License](https://raw.githubusercontent.com/thedaviddias/HTMLHint/master/LICENSE). | ||
|
||
## Contributors | ||
|
||
This project exists thanks to all these people. [Contribute](CONTRIBUTING.md). | ||
<a href="https://github.com/thedaviddias/HTMLHint/graphs/contributors"><img src="https://opencollective.com/htmlhint/contributors.svg?width=890" /></a> | ||
|
||
## Backers | ||
|
||
Thank you to all our backers! [Become a backer](https://opencollective.com/stylelint#backer). | ||
|
||
<a href="https://opencollective.com/htmlhint#backers" target="_blank"><img src="https://opencollective.com/htmlhint/backers.svg?width=890"></a> | ||
|
||
## Sponsors | ||
|
||
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor](https://opencollective.com/htmlhint#sponsor). | ||
|
||
<a href="https://opencollective.com/htmlhint/sponsor/0/website" target="_blank"><img src="https://opencollective.com/htmlhint/sponsor/0/avatar.svg"></a> |