-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add [markdownlint-cli](https://npm.im/markdownlint-cli) - lint all Markdown files - add some rules to `.markdownlintrc`
- Loading branch information
Showing
15 changed files
with
1,170 additions
and
1,137 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 |
---|---|---|
|
@@ -13,6 +13,3 @@ indent_size = 2 | |
|
||
[Makefile] | ||
indent_style = tab | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,30 +1,35 @@ | ||
# Mocha Code of Conduct | ||
|
||
## Be friendly and patient | ||
|
||
We understand that everyone has different levels of experience or knowledge in many diverse fields, be it technical or | ||
non-technical in nature. We also have areas of knowledge we are eager to expand; we want to be a community where people | ||
can not only contribute, but feel comfortable to ask questions as well and learn along the way. If someone says something | ||
wrong, or says something accidentally offensive, respond with patience and try to keep it polite and civil. Remember that | ||
we all were newbies at one point. | ||
|
||
## Be welcoming | ||
|
||
We strive to be a community that welcomes and supports people of all backgrounds and identities. This includes, but is not | ||
limited to, members of any race, ethnicity, culture, national origin, color, immigration status, social and economic class, | ||
educational level, sex, sexual orientation, gender identity and expression, age, size, family status, political belief, | ||
religion, and mental and physical ability. | ||
|
||
## Be considerate | ||
|
||
Your work will be used by other people, and you in turn will depend on the work of others. Any decision you make will affect | ||
users and colleagues, and you should take those consequences into account when making decisions. Remember that we’re a world-wide | ||
community, so you might not be communicating in someone else’s primary language. | ||
|
||
## Be respectful | ||
|
||
Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners. We might all | ||
experience some frustration now and then, but we cannot allow that frustration to turn into a personal attack. It’s important | ||
to remember that a community where people feel uncomfortable or threatened is not a productive one. Members of the JS Foundation | ||
community should be respectful when dealing with other members as well as with people outside the JS Foundation community. | ||
|
||
## Be careful in the words that you choose | ||
|
||
We are a community of professionals, and we conduct ourselves professionally. Be kind to others. Do not insult or put | ||
down other participants. Harassment and other exclusionary behavior aren’t acceptable. This includes, but is not limited to: | ||
|
||
|
@@ -38,6 +43,7 @@ down other participants. Harassment and other exclusionary behavior aren’t acc | |
* Repeated harassment of others. In general, if someone asks you to stop, then stop. | ||
|
||
## When we disagree, try to understand why | ||
|
||
Disagreements, both social and technical, happen all the time and JS Foundation projects are no exception. It is important | ||
that we resolve disagreements and differing views constructively. Remember that we’re different. The strength of the JS | ||
Foundation comes from its varied community, people from a wide range of backgrounds. Different people have different | ||
|
@@ -48,4 +54,5 @@ and learning from mistakes. | |
Original text courtesy of the Speak Up! project and Django Project. | ||
|
||
## QUESTIONS? | ||
|
||
If you have questions, please see the FAQ. If that doesn’t answer your questions, feel free to email [email protected]. |
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
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"no-inline-html": false, | ||
"line-length": false, | ||
"no-trailing-punctuation": false, | ||
"no-duplicate-header": false, | ||
"first-header-h1": false, | ||
"first-line-h1": false, | ||
"commands-show-output": false, | ||
"single-h1": false | ||
} |
Oops, something went wrong.