From 69f7ce9cea1cc9b250365e6291bceda87c24473f Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Tue, 13 Feb 2018 01:52:02 +0100 Subject: doc: activate `no-multiple-empty-lines` rule This enables the `no-multiple-empty-lines` eslint rule for the docs. PR-URL: https://github.com/nodejs/node/pull/18747 Reviewed-By: Weijia Wang Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Matheus Marchini --- doc/api/vm.md | 3 --- 1 file changed, 3 deletions(-) (limited to 'doc/api/vm.md') diff --git a/doc/api/vm.md b/doc/api/vm.md index 824cd4d403..e4ea6ca87a 100644 --- a/doc/api/vm.md +++ b/doc/api/vm.md @@ -93,7 +93,6 @@ const contextifiedSandbox = vm.createContext({ secret: 42 }); s; `, { context: contextifiedSandbox }); - // Step 2 // // "Link" the imported dependencies of this Module to it. @@ -132,7 +131,6 @@ const contextifiedSandbox = vm.createContext({ secret: 42 }); } await bar.link(linker); - // Step 3 // // Instantiate the top-level Module. @@ -142,7 +140,6 @@ const contextifiedSandbox = vm.createContext({ secret: 42 }); bar.instantiate(); - // Step 4 // // Evaluate the Module. The evaluate() method returns a Promise with a single -- cgit v1.2.3