Skip to content

Commit 8761636

Browse files
committed
[Dev Deps] update eslint, tape, eslint-plugin-react
1 parent 762b751 commit 8761636

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

packages/eslint-config-airbnb/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
"homepage": "https://github.com/airbnb/javascript",
4444
"devDependencies": {
4545
"babel-tape-runner": "^1.3.1",
46-
"eslint": "^2.2.0",
47-
"eslint-plugin-react": "^4.0.0",
46+
"eslint": "^2.3.0",
47+
"eslint-plugin-react": "^4.1.0",
4848
"react": "^0.14.7",
49-
"tape": "^4.4.0",
49+
"tape": "^4.5.0",
5050
"parallelshell": "^2.0.0"
5151
},
5252
"peerDependencies": {

packages/eslint-config-airbnb/rules/es6.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ module.exports = {
3636
// disallow symbol constructor
3737
// http://eslint.org/docs/rules/no-new-symbol
3838
'no-new-symbol': 2,
39+
// disallow specific globals
40+
'no-restricted-globals': 0,
3941
// disallow specific imports
4042
// http://eslint.org/docs/rules/no-restricted-imports
4143
'no-restricted-imports': 0,

packages/eslint-config-airbnb/rules/style.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ module.exports = {
5959
'new-parens': 0,
6060
// allow/disallow an empty newline after var statement
6161
'newline-after-var': 0,
62+
// http://eslint.org/docs/rules/newline-before-return
63+
'newline-before-return': 0,
6264
// enforces new line after each method call in the chain to make it
6365
// more readable and easy to maintain
6466
// http://eslint.org/docs/rules/newline-per-chained-call

0 commit comments

Comments
 (0)