Skip to content

Commit

Permalink
Bump deps and remove no-catch-shadow as it is deprecated (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
tclindner authored Jul 14, 2018
1 parent 82ac7d6 commit 95663e3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 95663e3

Please sign in to comment.