Skip to content

Commit

Permalink
Add new rules for eslint 3.11 and 3.12 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
tclindner authored Jan 8, 2017
1 parent effeccd commit 88e70a0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Removed

## [1.4.0] - 2017-01-08
### Added
Added one new rules from ESLint v3.12.0.

* [no-await-in-loop](http://eslint.org/docs/rules/no-await-in-loop)

Added one new rules from ESLint v3.11.0.

* [require-await](http://eslint.org/docs/rules/require-await)

## [1.3.0] - 2016-11-20
### Added
Added one new rules from ESLint v3.10.0.
Expand Down
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,8 @@ module.exports = {
'after': 'always'
}],
'no-useless-return': 'error',
'no-return-await': 'error'
'no-return-await': 'error',
'require-await': 'error',
'no-await-in-loop': 'error'
}
};
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-tc",
"version": "1.3.0",
"version": "1.4.0",
"description": "ESLint shareable config for TC's projects",
"keywords": [
"eslintconfig",
Expand Down Expand Up @@ -31,7 +31,7 @@
"test": "mocha test"
},
"devDependencies": {
"eslint": "^3.10.2",
"eslint": "^3.13.0",
"eslint-formatter-pretty": "^1.1.0",
"is-plain-obj": "^1.1.0",
"jscs": "^3.0.7",
Expand All @@ -42,7 +42,7 @@
"temp-write": "^2.1.0"
},
"peerDependencies": {
"eslint": "^3.10.2"
"eslint": "^3.13.0"
},
"engines": {
"node": ">=4.2.0",
Expand Down

0 comments on commit 88e70a0

Please sign in to comment.