diff options
author | Vse Mozhet Byt <vsemozhetbyt@gmail.com> | 2017-04-21 22:55:51 +0300 |
---|---|---|
committer | Vse Mozhet Byt <vsemozhetbyt@gmail.com> | 2017-04-25 00:06:17 +0300 |
commit | b4fea2a3d62da5e2e3f90d7f2109f02f927f7174 (patch) | |
tree | d04d3b624c5bc153b56d926ec2b3fd82689e33cd /doc/api/cluster.md | |
parent | e2c3e4727d5899a709f5c421e128a4af2ef626f3 (diff) | |
download | node-new-b4fea2a3d62da5e2e3f90d7f2109f02f927f7174.tar.gz |
doc: add eslint-plugin-markdown
* install eslint-plugin-markdown
* add doc/.eslintrc.yaml
* add `<!-- eslint-disable rule -->` or `<!-- eslint-disable -->`
for the rest of problematic code
* .js files in doc folder added to .eslintignore
* update Makefile and vcbuild.bat
PR-URL: https://github.com/nodejs/node/pull/12563
Refs: https://github.com/nodejs/node/pull/12557#issuecomment-296015032
Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Diffstat (limited to 'doc/api/cluster.md')
-rw-r--r-- | doc/api/cluster.md | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/doc/api/cluster.md b/doc/api/cluster.md index 069f9f2003..858c98dab6 100644 --- a/doc/api/cluster.md +++ b/doc/api/cluster.md @@ -523,14 +523,11 @@ When any of the workers die the cluster module will emit the `'exit'` event. This can be used to restart the worker by calling `.fork()` again. ```js -cluster.on( - 'exit', - (worker, code, signal) => { - console.log('worker %d died (%s). restarting...', - worker.process.pid, signal || code); - cluster.fork(); - } -); +cluster.on('exit', (worker, code, signal) => { + console.log('worker %d died (%s). restarting...', + worker.process.pid, signal || code); + cluster.fork(); +}); ``` See [child_process event: 'exit'][]. |