Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2019-09-01 09:08:20 +0300
committerRich Trott <rtrott@gmail.com>2019-09-04 06:55:39 +0300
commit27a57d3a3449e4d6b9c07ef3bb56c4b0b43c133d (patch)
treec5f4efd2d96f6ec252edc98378262612411a1068 /doc/api/repl.md
parent3c84556654fb81d73a61b9d19bba3df6aac94e0e (diff)
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/api/repl.md')
-rw-r--r--doc/api/repl.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/api/repl.md b/doc/api/repl.md
index b53c39dab20..75be841490e 100644
--- a/doc/api/repl.md
+++ b/doc/api/repl.md
@@ -601,17 +601,17 @@ undefined
Various behaviors of the Node.js REPL can be customized using the following
environment variables:
- - `NODE_REPL_HISTORY` - When a valid path is given, persistent REPL history
- will be saved to the specified file rather than `.node_repl_history` in the
- user's home directory. Setting this value to `''` (an empty string) will
- disable persistent REPL history. Whitespace will be trimmed from the value.
- On Windows platforms environment variables with empty values are invalid so
- set this variable to one or more spaces to disable persistent REPL history.
- - `NODE_REPL_HISTORY_SIZE` - Controls how many lines of history will be
- persisted if history is available. Must be a positive number.
- **Default:** `1000`.
- - `NODE_REPL_MODE` - May be either `'sloppy'` or `'strict'`. **Default:**
- `'sloppy'`, which will allow non-strict mode code to be run.
+- `NODE_REPL_HISTORY` - When a valid path is given, persistent REPL history
+ will be saved to the specified file rather than `.node_repl_history` in the
+ user's home directory. Setting this value to `''` (an empty string) will
+ disable persistent REPL history. Whitespace will be trimmed from the value.
+ On Windows platforms environment variables with empty values are invalid so
+ set this variable to one or more spaces to disable persistent REPL history.
+- `NODE_REPL_HISTORY_SIZE` - Controls how many lines of history will be
+ persisted if history is available. Must be a positive number.
+ **Default:** `1000`.
+- `NODE_REPL_MODE` - May be either `'sloppy'` or `'strict'`. **Default:**
+ `'sloppy'`, which will allow non-strict mode code to be run.
### Persistent History