[Dev Deps] update eslint, tape, eslint-plugin-react

This commit is contained in:
Jordan Harband
2016-03-04 20:05:42 -08:00
parent 762b7510ab
commit 87616367cb
3 changed files with 7 additions and 3 deletions

View File

@@ -43,10 +43,10 @@
"homepage": "https://github.com/airbnb/javascript",
"devDependencies": {
"babel-tape-runner": "^1.3.1",
"eslint": "^2.2.0",
"eslint-plugin-react": "^4.0.0",
"eslint": "^2.3.0",
"eslint-plugin-react": "^4.1.0",
"react": "^0.14.7",
"tape": "^4.4.0",
"tape": "^4.5.0",
"parallelshell": "^2.0.0"
},
"peerDependencies": {

View File

@@ -36,6 +36,8 @@ module.exports = {
// disallow symbol constructor
// http://eslint.org/docs/rules/no-new-symbol
'no-new-symbol': 2,
// disallow specific globals
'no-restricted-globals': 0,
// disallow specific imports
// http://eslint.org/docs/rules/no-restricted-imports
'no-restricted-imports': 0,

View File

@@ -59,6 +59,8 @@ module.exports = {
'new-parens': 0,
// allow/disallow an empty newline after var statement
'newline-after-var': 0,
// http://eslint.org/docs/rules/newline-before-return
'newline-before-return': 0,
// enforces new line after each method call in the chain to make it
// more readable and easy to maintain
// http://eslint.org/docs/rules/newline-per-chained-call