Skip to content

Commit a723b8f

Browse files
committed
lint Markdown; closes #3172
- add [markdownlint-cli](https://npm.im/markdownlint-cli) - lint all Markdown files - add some rules to `.markdownlintrc`
1 parent dc12bd5 commit a723b8f

15 files changed

+1170
-1137
lines changed

.editorconfig

-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,3 @@ indent_size = 2
1313

1414
[Makefile]
1515
indent_style = tab
16-
17-
[*.md]
18-
trim_trailing_whitespace = false

.github/CODE_OF_CONDUCT.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,35 @@
11
# Mocha Code of Conduct
22

33
## Be friendly and patient
4+
45
We understand that everyone has different levels of experience or knowledge in many diverse fields, be it technical or
56
non-technical in nature. We also have areas of knowledge we are eager to expand; we want to be a community where people
67
can not only contribute, but feel comfortable to ask questions as well and learn along the way. If someone says something
78
wrong, or says something accidentally offensive, respond with patience and try to keep it polite and civil. Remember that
89
we all were newbies at one point.
910

1011
## Be welcoming
12+
1113
We strive to be a community that welcomes and supports people of all backgrounds and identities. This includes, but is not
1214
limited to, members of any race, ethnicity, culture, national origin, color, immigration status, social and economic class,
1315
educational level, sex, sexual orientation, gender identity and expression, age, size, family status, political belief,
1416
religion, and mental and physical ability.
1517

1618
## Be considerate
19+
1720
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
1821
users and colleagues, and you should take those consequences into account when making decisions. Remember that we’re a world-wide
1922
community, so you might not be communicating in someone else’s primary language.
2023

2124
## Be respectful
25+
2226
Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners. We might all
2327
experience some frustration now and then, but we cannot allow that frustration to turn into a personal attack. It’s important
2428
to remember that a community where people feel uncomfortable or threatened is not a productive one. Members of the JS Foundation
2529
community should be respectful when dealing with other members as well as with people outside the JS Foundation community.
2630

2731
## Be careful in the words that you choose
32+
2833
We are a community of professionals, and we conduct ourselves professionally. Be kind to others. Do not insult or put
2934
down other participants. Harassment and other exclusionary behavior aren’t acceptable. This includes, but is not limited to:
3035

@@ -38,6 +43,7 @@ down other participants. Harassment and other exclusionary behavior aren’t acc
3843
* Repeated harassment of others. In general, if someone asks you to stop, then stop.
3944

4045
## When we disagree, try to understand why
46+
4147
Disagreements, both social and technical, happen all the time and JS Foundation projects are no exception. It is important
4248
that we resolve disagreements and differing views constructively. Remember that we’re different. The strength of the JS
4349
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.
4854
Original text courtesy of the Speak Up! project and Django Project.
4955

5056
## QUESTIONS?
57+
5158
If you have questions, please see the FAQ. If that doesn’t answer your questions, feel free to email conduct@js.foundation.

.github/CONTRIBUTING.md

+29-29
Original file line numberDiff line numberDiff line change
@@ -40,35 +40,35 @@ We ask you please keep these goals in mind when making or proposing changes.
4040

4141
Follow these steps to get going. If you are having trouble, don't be afraid to [ask for help](#got-a-question).
4242

43-
1. [Install Node.js 4.x or newer](https://nodejs.org/download).
44-
1. Install [GNU Make](https://www.gnu.org/software/make/) or equivalent.
45-
1. Follow [Github's documentation](https://help.github.com/articles/fork-a-repo/) on setting up Git, forking and cloning.
46-
1. Create a new branch in your working copy. Give your branch a descriptive name, such as `issue/12345`: `git checkout -b issue/12345`.
47-
1. Execute `npm install` to install the development dependencies.
48-
1. Make your changes and add them via `git add`.
49-
- **Do not modify** the root `mocha.js` file directly; it is automatically generated.
50-
- Your changes will likely be somewhere in `lib/`, `bin/` or `browser-entry.js` if your changes are browser-specific.
51-
- Please add unit and/or integration tests (depending on the nature of your changes).
52-
- Keep your PR focused. Don't fix two things at once, or make formatting changes alongside bug fixes.
53-
1. Before committing, run `npm test`.
54-
- This will run unit tests, Node.js and browser integration tests, and lint the source code.
55-
- The "browser" tests use Mocha to test itself; it will rebuild the root `mocha.js` file with your changes.
56-
- **Please avoid committing changes to `mocha.js`**.
57-
- Ultimately, your pull request will be built on our continuous integration servers ([Travis CI](https://travis-ci.org/mochajs/mocha) and [AppVeyor](https://ci.appveyor.com/project/boneskull/mocha)). The first step to ensuring these checks pass is to test on your own machine.
58-
1. Commit your changes.
59-
- Use a brief message on the first line, referencing a relevant issue (e.g. `#12345`).
60-
- Add detail in subsequent lines.
61-
1. Push your changes to your fork.
62-
1. Navigate to the source repository. You should see a notification about your recent changes in your fork's branch, with a button to create a pull request. Click it.
63-
1. Describe your changes in detail here. Once you're satisfied, submit the form.
64-
- *PRO TIP*: If you've used a multi-line commit message, Github will pre-fill the PR's description with it.
65-
1. If you have not signed our Contributor License Agreement, a friendly robot will prompt you to do so. A [CLA](https://cla.js.foundation/mochajs/mocha) (electronic) signature is **required** for all contributions of code to Mocha.
66-
1. CI will run against your changes.
67-
- If the changes fail the checks, you will need to address those before merging.
68-
- You don't need to make a new PR to make changes. Instead, commit on top of your changes, and push these to your fork's branch. The PR will be updated, and CI will re-run.
69-
- Github will indicate if there's a conflict. If this happens, you will need to [rebase](https://help.github.com/articles/about-git-rebase/) your branch onto the `master` branch of the source repository. *Don't merge.*
70-
- It's no longer necessary to "squash" your changes.
71-
1. Be patient while your PR is reviewed. This can take awhile ([why?](https://github.com/orgs/mochajs/projects/4)). We may request changes; don't be afraid to question them.
43+
1. [Install Node.js 4.x or newer](https://nodejs.org/download).
44+
1. Install [GNU Make](https://www.gnu.org/software/make/) or equivalent.
45+
1. Follow [Github's documentation](https://help.github.com/articles/fork-a-repo/) on setting up Git, forking and cloning.
46+
1. Create a new branch in your working copy. Give your branch a descriptive name, such as `issue/12345`: `git checkout -b issue/12345`.
47+
1. Execute `npm install` to install the development dependencies.
48+
1. Make your changes and add them via `git add`.
49+
- **Do not modify** the root `mocha.js` file directly; it is automatically generated.
50+
- Your changes will likely be somewhere in `lib/`, `bin/` or `browser-entry.js` if your changes are browser-specific.
51+
- Please add unit and/or integration tests (depending on the nature of your changes).
52+
- Keep your PR focused. Don't fix two things at once, or make formatting changes alongside bug fixes.
53+
1. Before committing, run `npm test`.
54+
- This will run unit tests, Node.js and browser integration tests, and lint the source code.
55+
- The "browser" tests use Mocha to test itself; it will rebuild the root `mocha.js` file with your changes.
56+
- **Please avoid committing changes to `mocha.js`**.
57+
- Ultimately, your pull request will be built on our continuous integration servers ([Travis CI](https://travis-ci.org/mochajs/mocha) and [AppVeyor](https://ci.appveyor.com/project/boneskull/mocha)). The first step to ensuring these checks pass is to test on your own machine.
58+
1. Commit your changes.
59+
- Use a brief message on the first line, referencing a relevant issue (e.g. `#12345`).
60+
- Add detail in subsequent lines.
61+
1. Push your changes to your fork.
62+
1. Navigate to the source repository. You should see a notification about your recent changes in your fork's branch, with a button to create a pull request. Click it.
63+
1. Describe your changes in detail here. Once you're satisfied, submit the form.
64+
- *PRO TIP*: If you've used a multi-line commit message, Github will pre-fill the PR's description with it.
65+
1. If you have not signed our Contributor License Agreement, a friendly robot will prompt you to do so. A [CLA](https://cla.js.foundation/mochajs/mocha) (electronic) signature is **required** for all contributions of code to Mocha.
66+
1. CI will run against your changes.
67+
- If the changes fail the checks, you will need to address those before merging.
68+
- You don't need to make a new PR to make changes. Instead, commit on top of your changes, and push these to your fork's branch. The PR will be updated, and CI will re-run.
69+
- Github will indicate if there's a conflict. If this happens, you will need to [rebase](https://help.github.com/articles/about-git-rebase/) your branch onto the `master` branch of the source repository. *Don't merge.*
70+
- It's no longer necessary to "squash" your changes.
71+
1. Be patient while your PR is reviewed. This can take awhile ([why?](https://github.com/orgs/mochajs/projects/4)). We may request changes; don't be afraid to question them.
7272

7373
## :angel: I Just Want To Help
7474

.github/ISSUE_TEMPLATE.md

+18-15
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,18 @@ For more, check out the Mocha Gitter chat room: https://gitter.im/mochajs/mocha
44
-->
55

66
### Prerequisites
7+
78
<!--
89
Place an `x` between the square brackets on the lines below for every satisfied prerequisite.
910
-->
10-
* [ ] Checked that your issue isn't already filed by cross referencing [issues with the `common mistake` label](https://github.com/mochajs/mocha/issues?utf8=%E2%9C%93&q=is%3Aissue%20label%3Acommon-mistake%20)
11-
* [ ] Checked next-gen ES issues and syntax problems by using the same environment and/or transpiler configuration without Mocha to ensure it isn't just a feature that actually isn't supported in the environment in question or a bug in your code.
12-
* [ ] 'Smoke tested' the code to be tested by running it outside the real test suite to get a better sense of whether the problem is in the code under test, your usage of Mocha, or Mocha itself
13-
* [ ] Ensured that there is no discrepancy between the locally and globally installed versions of Mocha. You can find them with:
14-
`node node_modules/.bin/mocha --version`(Local) and `mocha --version`(Global). We recommend avoiding the use of globally installed Mocha.
11+
12+
- [ ] Checked that your issue isn't already filed by cross referencing [issues with the `common mistake` label](https://github.com/mochajs/mocha/issues?utf8=%E2%9C%93&q=is%3Aissue%20label%3Acommon-mistake%20)
13+
- [ ] Checked next-gen ES issues and syntax problems by using the same environment and/or transpiler configuration without Mocha to ensure it isn't just a feature that actually isn't supported in the environment in question or a bug in your code.
14+
- [ ] 'Smoke tested' the code to be tested by running it outside the real test suite to get a better sense of whether the problem is in the code under test, your usage of Mocha, or Mocha itself
15+
- [ ] Ensured that there is no discrepancy between the locally and globally installed versions of Mocha. You can find them with: `node node_modules/.bin/mocha --version`(Local) and `mocha --version`(Global). We recommend avoiding the use of globally installed Mocha.
1516

1617
### Description
18+
1719
<!--
1820
[Description of the issue]
1921
-->
@@ -32,18 +34,19 @@ on how to create a minimal, complete, and verifiable example.
3234
**Reproduces how often:** [What percentage of the time does it reproduce?]
3335

3436
### Versions
35-
<!--
36-
If applicable, please specify:
37-
* The output of `mocha --version` and `node node_modules/.bin/mocha --version`:
38-
* The output of `node --version`:
39-
* The version and architecture of your operating system:
40-
* Your shell (bash, zsh, PowerShell, cmd, etc.):
41-
* Your browser and version (if running browser tests):
42-
* Any other third party Mocha related modules (with versions):
43-
* The code transpiler being used:
44-
-->
37+
38+
<!-- If applicable, please specify: -->
39+
40+
- The output of `mocha --version` and `node node_modules/.bin/mocha --version`:
41+
- The output of `node --version`:
42+
- The version and architecture of your operating system:
43+
- Your shell (bash, zsh, PowerShell, cmd, etc.):
44+
- Your browser and version (if running browser tests):
45+
- Any other third party Mocha related modules (with versions):
46+
- The code transpiler being used:
4547

4648
### Additional Information
49+
4750
<!--
4851
Any additional information, configuration or data that might be necessary to reproduce the issue.
4952
-->

.markdownlint.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"no-inline-html": false,
3+
"line-length": false,
4+
"no-trailing-punctuation": false,
5+
"no-duplicate-header": false,
6+
"first-header-h1": false,
7+
"first-line-h1": false,
8+
"commands-show-output": false,
9+
"single-h1": false
10+
}

0 commit comments

Comments
 (0)