summaryrefslogtreecommitdiff
path: root/doc/guides/contributing
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2019-09-01 02:08:20 -0400
committerRich Trott <rtrott@gmail.com>2019-09-03 20:55:39 -0700
commit27a57d3a3449e4d6b9c07ef3bb56c4b0b43c133d (patch)
treec5f4efd2d96f6ec252edc98378262612411a1068 /doc/guides/contributing
parent3c84556654fb81d73a61b9d19bba3df6aac94e0e (diff)
downloadandroid-node-v8-27a57d3a3449e4d6b9c07ef3bb56c4b0b43c133d.tar.gz
android-node-v8-27a57d3a3449e4d6b9c07ef3bb56c4b0b43c133d.tar.bz2
android-node-v8-27a57d3a3449e4d6b9c07ef3bb56c4b0b43c133d.zip
doc: start unorded lists at start of line
Address Markdownlint MD006 rule. Can flag when list items aren't indented far enough. PR-URL: https://github.com/nodejs/node/pull/29390 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/guides/contributing')
-rw-r--r--doc/guides/contributing/pull-requests.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/guides/contributing/pull-requests.md b/doc/guides/contributing/pull-requests.md
index 5cc8f7d17f..db615b8622 100644
--- a/doc/guides/contributing/pull-requests.md
+++ b/doc/guides/contributing/pull-requests.md
@@ -105,10 +105,10 @@ $ git checkout -b my-branch -t upstream/master
The vast majority of Pull Requests opened against the `nodejs/node`
repository includes changes to one or more of the following:
- - the C/C++ code contained in the `src` directory
- - the JavaScript code contained in the `lib` directory
- - the documentation in `doc/api`
- - tests within the `test` directory.
+- the C/C++ code contained in the `src` directory
+- the JavaScript code contained in the `lib` directory
+- the documentation in `doc/api`
+- tests within the `test` directory.
If you are modifying code, please be sure to run `make lint` from time to
time to ensure that the changes follow the Node.js code style guide.