From 95663e3870c59245aa0fb12e809a28a4f74f40b9 Mon Sep 17 00:00:00 2001 From: tclindner Date: Sat, 14 Jul 2018 17:08:55 -0500 Subject: [PATCH] Bump deps and remove no-catch-shadow as it is deprecated (#25) --- CHANGELOG.md | 4 ++++ index.js | 1 - package.json | 8 ++++---- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8815d90..52f5619 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Removed +## [4.1.0] - 2018-07-14 +### Removed +* Removed deprecated ESLint rule, `no-catch-shadow` + ## [4.0.0] - 2018-06-23 ### Added Added two new rules from ESLint v5.0.0. diff --git a/index.js b/index.js index aadadb4..a655b2a 100644 --- a/index.js +++ b/index.js @@ -98,7 +98,6 @@ module.exports = { 'no-buffer-constructor': 'error', 'no-caller': 'error', 'no-case-declarations': 'error', - 'no-catch-shadow': 'error', 'no-class-assign': 'error', 'no-compare-neg-zero': 'error', 'no-cond-assign': ['error', 'always'], diff --git a/package.json b/package.json index 6cc3b29..cb84265 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-tc", - "version": "4.0.0", + "version": "4.1.0", "description": "ESLint shareable config for JavaScript projects", "keywords": [ "eslintconfig", @@ -30,16 +30,16 @@ }, "devDependencies": { "chai": "^4.1.2", - "eslint": "^5.0.0", + "eslint": "^5.1.0", "eslint-formatter-pretty": "^1.3.0", "is-plain-obj": "^1.1.0", "mocha": "^5.2.0", - "npm-package-json-lint": "^3.1.0", + "npm-package-json-lint": "^3.2.0", "npm-package-json-lint-config-tc": "^2.1.0", "temp-write": "^3.4.0" }, "peerDependencies": { - "eslint": "^5.0.0" + "eslint": "^5.1.0" }, "engines": { "node": ">=6.0.0",