Skip to content

Commit 8d34433

Browse files
committed
Initial commit 🚀
1 parent c906d40 commit 8d34433

7 files changed

Lines changed: 156 additions & 1 deletion

File tree

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* text=auto
2+
readme.md merge=union

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- 'node'

CODE_OF_CONDUCT.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
- Using welcoming and inclusive language
12+
- Being respectful of differing viewpoints and experiences
13+
- Gracefully accepting constructive criticism
14+
- Focusing on what is best for the community
15+
- Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
- The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
- Trolling, insulting/derogatory comments, and personal or political attacks
21+
- Public or private harassment
22+
- Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
- Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28+
29+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30+
31+
## Scope
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34+
35+
## Enforcement
36+
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at thedaviddias@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38+
39+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [https://contributor-covenant.org/version/1/4][version]
44+
45+
[homepage]: https://contributor-covenant.org
46+
[version]: https://contributor-covenant.org/version/1/4/

CONTRIBUTING.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Contribute
2+
3+
## Introduction
4+
5+
First, thank you for considering contributing to the Awesome HTMLHint! It's people like you that make the open source community such a great community! 😊
6+
7+
We welcome any type of contribution, not only code. You can help with
8+
- **QA**: file bug reports, the more details you can give the better (e.g. screenshots with the console open)
9+
- **Marketing**: writing blog posts, howto's, printing stickers, ...
10+
- **Community**: presenting the project at meetups, organizing a dedicated meetup for the local community, ...
11+
- **Code**: take a look at the [open issues](https://github.com/thedaviddias/awesome-htmlhint/issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them.
12+
13+
## Your First Contribution
14+
15+
Working on your first Pull Request? You can learn how from this *free* series, [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github).
16+
17+
## Submitting code
18+
19+
Any code change should be submitted as a pull request. The description should explain what the code does and give steps to execute it. The pull request should also contain tests.
20+
21+
## Code review process
22+
23+
The bigger the pull request, the longer it will take to review and merge. Try to break down large pull requests in smaller chunks that are easier to review and merge.
24+
It is also always helpful to have some context for your pull request. What was the purpose? Why does it matter to you?
25+
26+
## Questions
27+
28+
If you have any questions, create an [issue](issue) (protip: do a quick search first to see if someone else didn't ask the same question before!).
29+
You can also reach us at thedaviddias@gmail.com.
30+
31+
<!-- This `CONTRIBUTING.md` is based on @nayafia's template https://github.com/nayafia/contributing-template -->

LICENCE.md

Whitespace-only changes.

README.md

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,49 @@
1-
# awesome-htmlhint
1+
# Awesome HTMLHint [![Awesome](https://awesome.re/badge.svg)](https://awesome.re)
2+
3+
> A list of awesome HTMLHint plugins, tools, etc.
4+
5+
## Contents
6+
7+
- [Plugins](#plugins)
8+
- [Editors](#editors)
9+
- [Tools](#tools)
10+
- [Build tools](#build-tools)
11+
- [Online tools](#online-tools)
12+
- [Tutorials](#tutorials)
13+
14+
## Plugins
15+
16+
### Editors
17+
18+
- Visual Studio Code: [vscode-htmlhint](https://github.com/Microsoft/vscode-htmlhint)
19+
- Sublime Text 3: [SublimeLinter-contrib-htmlhint](https://github.com/HTMLHint/SublimeLinter-contrib-htmlhint)
20+
- Brackets: [brackets-htmlhint](https://github.com/HTMLHint/brackets-htmlhint)
21+
- Atom: [linter-htmlhint](https://github.com/AtomLinter/linter-htmlhint)
22+
23+
## Tools
24+
25+
## Build tools
26+
27+
- Grunt: [grunt-htmlhint](https://www.npmjs.com/package/grunt-htmlhint)
28+
- Gulp: [gulp-eslint](https://www.npmjs.com/package/gulp-eslint)
29+
- Webpack: [htmlhint-loader](https://www.npmjs.com/package/htmlhint-loader)
30+
31+
## Online tools
32+
33+
- Inspecode: [HTMLHint on Inspecode](https://inspecode.rocro.com/help/tools/htmlhint.html)
34+
35+
## Tutorials
36+
37+
- [HTMLHint Linter Codemirror Integration](https://www.youtube.com/watch?v=LjZI8bPSatY)
38+
39+
## Contribute
40+
41+
Contributions welcome! Read the [contribution guidelines](contributing.md) first.
42+
43+
## License
44+
45+
[![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](http://creativecommons.org/publicdomain/zero/1.0)
46+
47+
To the extent possible under law, David Dias has waived all copyright and
48+
related or neighboring rights to this work.
49+
`

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "awesome-htmlhint",
3+
"version": "1.0.0",
4+
"description": "> This is an awesome list",
5+
"main": "index.js",
6+
"scripts": {
7+
8+
},
9+
"devDependencies": {
10+
"awesome-lint": "*"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://thedaviddias@github.com/thedaviddias/awesome-htmlhint.git"
15+
},
16+
"keywords": [
17+
"awesome"
18+
],
19+
"author": "",
20+
"license": "ISC",
21+
"bugs": {
22+
"url": "https://github.com/thedaviddias/awesome-htmlhint/issues"
23+
},
24+
"homepage": "https://github.com/thedaviddias/awesome-htmlhint#readme"
25+
}

0 commit comments

Comments
 (0)