Skip to content

Commit

Permalink
Add support for ESLint 6 (#57)
Browse files Browse the repository at this point in the history
Closes #40
  • Loading branch information
tclindner authored Aug 10, 2019
1 parent 660a509 commit 5afe7c0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
9 changes: 4 additions & 5 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

## [8.0.0] - 2019-08-10
### Changed
* Updated to ESLint 6.

## [7.0.0] - 2019-07-25
### Added
* [`eslint-plugin-jest`](https://github.com/jest-community/eslint-plugin-jest) with the following rules:
Expand Down Expand Up @@ -38,11 +42,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
* [`require-tothrow-message`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/require-tothrow-message.md)
* [`prefer-todo`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/prefer-todo.md)


### Changed

### Fixed

### Removed
* Dropped Node 6 and 7 support
* `valid-jsdoc` and `require-jsdoc` since both have been removed from ESLint core to a plugin because of their complexity.
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-tc",
"version": "7.0.0",
"version": "8.0.0",
"description": "ESLint shareable config for JavaScript projects",
"keywords": [
"eslintconfig",
Expand Down Expand Up @@ -33,10 +33,10 @@
"test": "jest"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint": "^6.1.0",
"eslint-formatter-pretty": "^2.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.0",
"eslint-plugin-prettier": "^3.1.0",
"is-plain-obj": "^2.0.0",
"jest": "^24.8.0",
Expand All @@ -45,11 +45,11 @@
"prettier": "^1.18.2"
},
"dependencies": {
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0"
},
"peerDependencies": {
"eslint": "^5.16.0",
"eslint": "^6.1.0",
"eslint-plugin-import": ">= 2",
"eslint-plugin-jest": ">= 22",
"eslint-plugin-prettier": ">= 3",
Expand Down

0 comments on commit 5afe7c0

Please sign in to comment.