Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-lodash

Package Overview
Dependencies
Maintainers
3
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-lodash - npm Package Compare versions

Comparing version 2.3.1 to 2.3.2

10

CHANGELOG.md

@@ -11,4 +11,12 @@ # Change Log

[unreleased]: https://github.com/wix/eslint-plugin-lodash/compare/v2.3.1...HEAD
[unreleased]: https://github.com/wix/eslint-plugin-lodash/compare/v2.3.2...HEAD
## [2.3.2] - 2017-01-18
### Fixed
- Allowed async functions in `collection-return` ([`9d0a082`][9d0a082])
[9d0a082]: https://github.com/wix/eslint-plugin-lodash/commit/9d0a082b7fca98e89f137f927fba13bd1005516e
[2.3.2]: https://github.com/wix/eslint-plugin-lodash/compare/v2.3.2...v2.3.1
## [2.3.1] - 2017-01-17

@@ -15,0 +23,0 @@ ### Fixed

2

lib/rules/collection-return.js

@@ -44,3 +44,3 @@ /**

if (isFunctionDefinitionWithBlock(iteratee) && !hasReturn) {
if (isFunctionDefinitionWithBlock(iteratee) && !hasReturn && !iteratee.async) {
context.report(node, 'Do not use _.' + method + ' without returning a value');

@@ -47,0 +47,0 @@ }

{
"name": "eslint-plugin-lodash",
"version": "2.3.1",
"version": "2.3.2",
"author": "Omer Ganim <ganimomer@gmail.com>",

@@ -5,0 +5,0 @@ "description": "Lodash specific linting rules for ESLint",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc