Socket
Socket
Sign inDemoInstall

eslint-config-lodash

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-lodash - npm Package Compare versions

Comparing version 4.0.1 to 4.0.2

4

package.json
{
"name": "eslint-config-lodash",
"version": "4.0.1",
"version": "4.0.2",
"description": "ESLint Shareable Config for Lodash",

@@ -15,3 +15,3 @@ "scripts": {

"devDependencies": {
"@eslint-recommended/eslint-config": "24.0.0",
"@eslint-recommended/eslint-config": "26.0.1",
"eslint": "8.57.0"

@@ -18,0 +18,0 @@ },

@@ -7,3 +7,3 @@ [![npm version](https://badge.fury.io/js/eslint-config-lodash.svg)](https://badge.fury.io/js/eslint-config-lodash)

ESLint Shareable Config for Lodash
ESLint Shareable Config for [Lodash](https://lodash.com/)

@@ -17,2 +17,7 @@ ## Overview

## Requirements
- Node.js v18 or later
- ESLint v7/v8
## Installation

@@ -32,7 +37,15 @@

pnpm:
```sh
pnpm add -D eslint-config-lodash
```
## Usage
Add `lodash` to `extends` of your ESLint config.
Add `lodash` to the `extends` section of your [ESLint configuration file](https://eslint.org/docs/latest/use/configure/configuration-files-deprecated).
```js
JavaScript:
```javascript
module.exports = {

@@ -42,7 +55,23 @@ extends: [

// add other rulesets here if needed
],
rules: {
// override/add rules settings here if needed
}
]
}
```
YAML:
```yaml
extends:
- lodash
# add other rulesets here if needed
```
JSON:
```jsonc
{
"extends": [
"lodash"
// add other rulesets here if needed
]
}
```
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