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

eslint-config-walmart

Package Overview
Dependencies
Maintainers
3
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-walmart - npm Package Compare versions

Comparing version 1.0.1 to 1.1.0

3

configurations/es5-test.js

@@ -11,4 +11,5 @@ "use strict";

"rules": {
"max-nested-callbacks": 0
"max-nested-callbacks": 0,
"no-magic-numbers": 0
}
};

@@ -17,4 +17,5 @@ "use strict";

"max-nested-callbacks": 0,
"no-unused-expressions": 0
"no-unused-expressions": 0,
"no-magic-numbers": 0
}
};

@@ -10,4 +10,5 @@ "use strict";

"rules": {
"max-nested-callbacks": 0
"max-nested-callbacks": 0,
"no-magic-numbers": 0
}
};

@@ -10,4 +10,5 @@ "use strict";

"rules": {
"max-nested-callbacks": 0
"max-nested-callbacks": 0,
"no-magic-numbers": 0
}
};
{
"name": "eslint-config-walmart",
"description": "A set of default eslint configurations, Walmart Labs style.",
"version": "1.0.1",
"version": "1.1.0",
"author": "Eric Baer <me@ericbaer.com>",

@@ -6,0 +6,0 @@ "homepage": "https://github.com/walmartlabs/eslint-config-walmart",

@@ -25,8 +25,16 @@ <h1 align="center">eslint-config-walmart</h1>

Install this config package and ESLint:
1. Install this config package and ESLint:
```bash
$ npm install --save-dev eslint eslint-config-walmart
```
```bash
$ npm install --save-dev eslint eslint-config-walmart
```
2. Then, install any additional dependencies required by your configuration. (See
[Dependencies](#dependencies) section below.)
e.g.
```bash
$ npm install --save-dev eslint-plugin-filenames babel-eslint
```
## Usage

@@ -33,0 +41,0 @@

@@ -72,3 +72,3 @@ "use strict";

// disallow the use of magic numbers
"no-magic-numbers": 2,
"no-magic-numbers": [2, {"ignore": [-1, 0, 1]}],
// disallow use of multiple spaces

@@ -75,0 +75,0 @@ "no-multi-spaces": 2,

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