Skip to content

Commit 95663e3

Browse files
authored
Bump deps and remove no-catch-shadow as it is deprecated (#25)
1 parent 82ac7d6 commit 95663e3

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1111

1212
### Removed
1313

14+
## [4.1.0] - 2018-07-14
15+
### Removed
16+
* Removed deprecated ESLint rule, `no-catch-shadow`
17+
1418
## [4.0.0] - 2018-06-23
1519
### Added
1620
Added two new rules from ESLint v5.0.0.

index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ module.exports = {
9898
'no-buffer-constructor': 'error',
9999
'no-caller': 'error',
100100
'no-case-declarations': 'error',
101-
'no-catch-shadow': 'error',
102101
'no-class-assign': 'error',
103102
'no-compare-neg-zero': 'error',
104103
'no-cond-assign': ['error', 'always'],

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-tc",
3-
"version": "4.0.0",
3+
"version": "4.1.0",
44
"description": "ESLint shareable config for JavaScript projects",
55
"keywords": [
66
"eslintconfig",
@@ -30,16 +30,16 @@
3030
},
3131
"devDependencies": {
3232
"chai": "^4.1.2",
33-
"eslint": "^5.0.0",
33+
"eslint": "^5.1.0",
3434
"eslint-formatter-pretty": "^1.3.0",
3535
"is-plain-obj": "^1.1.0",
3636
"mocha": "^5.2.0",
37-
"npm-package-json-lint": "^3.1.0",
37+
"npm-package-json-lint": "^3.2.0",
3838
"npm-package-json-lint-config-tc": "^2.1.0",
3939
"temp-write": "^3.4.0"
4040
},
4141
"peerDependencies": {
42-
"eslint": "^5.0.0"
42+
"eslint": "^5.1.0"
4343
},
4444
"engines": {
4545
"node": ">=6.0.0",

0 commit comments

Comments
 (0)