Skip to content

Commit

Permalink
eslint-plugin-standard@4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Oct 23, 2020
1 parent b9c1caa commit ed6e6a9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
4 changes: 2 additions & 2 deletions lib/utils/flat-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ const flatOptions = npm => npm.flatOptions || Object.freeze({
binLinks: npm.config.get('bin-links'),
rebuildBundle: npm.config.get('rebuild-bundle'),
// --no-shrinkwrap is the same as --no-package-lock
packageLock: npm.config.get('package-lock') === false ||
npm.config.get('shrinkwrap') === false ? false : true,
packageLock: !(npm.config.get('package-lock') === false ||
npm.config.get('shrinkwrap') === false),
packageLockOnly: npm.config.get('package-lock-only'),
globalStyle: npm.config.get('global-style'),
legacyBundling: npm.config.get('legacy-bundling'),
Expand Down
28 changes: 21 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-standard": "^4.0.2",
"marked-man": "^0.7.0",
"require-inject": "^1.4.4",
"tap": "^14.10.8"
Expand Down

0 comments on commit ed6e6a9

Please sign in to comment.