From cb705105367c53768a1b45514894251d0e14a1f3 Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Wed, 23 Sep 2020 12:43:34 -0700 Subject: [PATCH] fixup lint errors --- doc/api/packages.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/api/packages.md b/doc/api/packages.md index 17fdf4ede6d922..737e777550c148 100644 --- a/doc/api/packages.md +++ b/doc/api/packages.md @@ -367,11 +367,12 @@ Node.js supports the following conditions out of the box: `import()`, or via any top-level import or resolve operation by the ECMAScript module loader. Applies regardless of the module format of the target file. _Always mutually exclusive with `"require"`._ -* `"require"` - matched when the package is loaded via `require()`. - The referenced file should be loadable with `require()` although the condition - will be matched regardless of the module format of the target file. Expected formats - include CommonJS, JSON, and native addons but not ES modules as `require()` - doesn't support them. _Always mutually exclusive with `"import"`._ +* `"require"` - matched when the package is loaded via `require()`. The + referenced file should be loadable with `require()` although the condition + will be matched regardless of the module format of the target file. Expected + formats include CommonJS, JSON, and native addons but not ES modules as + `require()` doesn't support them. _Always mutually exclusive with + `"import"`._ * `"node"` - matched for any Node.js environment. Can be a CommonJS or ES module file. _This condition should always come after `"import"` or `"require"`._