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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdu93Jer <mailing_93@hotmail.com>2020-12-16 02:49:38 +0300
committerisaacs <i@izs.me>2020-12-18 22:35:16 +0300
commita92d310b7e9e4c48b08f52785c2e3a6d52a82ad7 (patch)
tree60a615230082a8cdac3d357ae7c59cbd94b0211d /test/lib/help-search.js
parentbe4a0900b14b2c6315bf62bed8f5affb648215ae (diff)
Add max-len to lint rules
PR-URL: https://github.com/npm/cli/pull/2361 Credit: @Edu93Jer Close: #2361 Reviewed-by: @isaacs EDIT(@isaacs): amended to match some of the fixes to our current style conventions
Diffstat (limited to 'test/lib/help-search.js')
-rw-r--r--test/lib/help-search.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lib/help-search.js b/test/lib/help-search.js
index 5ecf5db06..f74e2f1ef 100644
--- a/test/lib/help-search.js
+++ b/test/lib/help-search.js
@@ -40,7 +40,8 @@ const globDir = {
'npm-more-useless.md': 'exec exec',
'npm-extra-useless.md': 'exec\nexec\nexec',
}
-const glob = (p, cb) => cb(null, Object.keys(globDir).map((file) => join(globRoot, file)))
+const glob = (p, cb) =>
+ cb(null, Object.keys(globDir).map((file) => join(globRoot, file)))
const helpSearch = requireInject('../../lib/help-search.js', {
'../../lib/npm.js': npm,