summaryrefslogtreecommitdiff
path: root/benchmark/child_process
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-06-23 20:52:07 -0700
committerRich Trott <rtrott@gmail.com>2017-06-27 06:17:06 -0700
commit496f60489d774ff32e3136b99320963ad46eed98 (patch)
treed7663e20f5096fa684b5216bb86828db65a69d0f /benchmark/child_process
parent1e5e0ce862174b95fcc04d4b9f9ea68c5944bfee (diff)
downloadandroid-node-v8-496f60489d774ff32e3136b99320963ad46eed98.tar.gz
android-node-v8-496f60489d774ff32e3136b99320963ad46eed98.tar.bz2
android-node-v8-496f60489d774ff32e3136b99320963ad46eed98.zip
tools,benchmark: use stricter indentation linting
Enable stricter indentation rules for benchmark code. PR-URL: https://github.com/nodejs/node/pull/13895 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to 'benchmark/child_process')
-rw-r--r--benchmark/child_process/child-process-read-ipc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/child_process/child-process-read-ipc.js b/benchmark/child_process/child-process-read-ipc.js
index 30dead1803..e6fb9b19c2 100644
--- a/benchmark/child_process/child-process-read-ipc.js
+++ b/benchmark/child_process/child-process-read-ipc.js
@@ -26,7 +26,7 @@ if (process.argv[2] === 'child') {
const options = { 'stdio': ['ignore', 1, 2, 'ipc'] };
const child = spawn(process.argv[0],
- [process.argv[1], 'child', len], options);
+ [process.argv[1], 'child', len], options);
var bytes = 0;
child.on('message', function(msg) {