eslint-config-walmart
Advanced tools
Comparing version 2.2.0 to 2.2.1
{ | ||
"name": "eslint-config-walmart", | ||
"description": "A set of default eslint configurations, Walmart Labs style.", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"author": "Eric Baer <me@ericbaer.com>", | ||
@@ -10,2 +10,6 @@ "homepage": "https://github.com/walmartlabs/eslint-config-walmart", | ||
}, | ||
"files": [ | ||
"configurations", | ||
"rules" | ||
], | ||
"repository": "git://github.com/walmartlabs/eslint-config-walmart.git", | ||
@@ -27,3 +31,3 @@ "private": false, | ||
}, | ||
"license": "MIT", | ||
"license": "Apache-2.0", | ||
"keywords": [ | ||
@@ -30,0 +34,0 @@ "code checker", |
@@ -52,2 +52,3 @@ <h1 align="center">eslint-config-walmart</h1> | ||
- `walmart/configurations/es6-browser` - ES6 + browser | ||
- `walmart/configurations/es6-node-test` - ES6 + node 4.x + test | ||
- `walmart/configurations/es6-node` - ES6 + node 4.x | ||
@@ -54,0 +55,0 @@ - `walmart/configurations/es6-react-test` - ES6 + react + test |
@@ -26,3 +26,3 @@ "use strict"; | ||
// disallow declaration of variables that are not used in the code | ||
"no-unused-vars": [2, { vars: "all", args: "after-used" }], | ||
"no-unused-vars": [2, { vars: "all", args: "after-used", ignoreRestSiblings: true }], | ||
// disallow use of variables before they are defined | ||
@@ -29,0 +29,0 @@ "no-use-before-define": 2 |
Sorry, the diff of this file is not supported yet
123
61551