Skip to content
This repository was archived by the owner on Mar 29, 2020. It is now read-only.

Commit 116a9eb

Browse files
committed
fix(deps): upgrade to latest
1 parent c1b0a5a commit 116a9eb

File tree

3 files changed

+166
-94
lines changed

3 files changed

+166
-94
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
},
6767
"peerDependencies": {
6868
"eslint": "^3.19.0",
69-
"prettier": "^1.4.1"
69+
"prettier": "^1.5.2"
7070
},
7171
"dependencies": {
7272
"babel-eslint": "^7.2.3",
@@ -77,7 +77,7 @@
7777
"eslint-plugin-flowtype": "^2.34.0",
7878
"eslint-plugin-import": "^2.3.0",
7979
"eslint-plugin-jest": "^20.0.3",
80-
"eslint-plugin-jsx-a11y": "^5.0.3",
80+
"eslint-plugin-jsx-a11y": "^6.0.2",
8181
"eslint-plugin-lodash-fp": "^2.1.3",
8282
"eslint-plugin-no-use-extend-native": "^0.3.12",
8383
"eslint-plugin-prettier": "^2.1.1",
@@ -88,13 +88,13 @@
8888
},
8989
"devDependencies": {
9090
"eslint": "^3.19.0",
91-
"eslint-find-rules": "^1.14.3",
92-
"husky": "^0.13.4",
91+
"eslint-find-rules": "^3.1.1",
92+
"husky": "^0.14.2",
9393
"jest": "^20.0.4",
9494
"npm-run-all": "^4.0.2",
95-
"prettier": "^1.4.1",
95+
"prettier": "^1.5.2",
9696
"semantic-release": "^6.3.6",
9797
"travis-watch": "^1.17.1",
98-
"validate-commit-msg": "^2.12.1"
98+
"validate-commit-msg": "^2.12.2"
9999
}
100100
}

react-base.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ module.exports = {
2929
'jsx-quotes': ['error', 'prefer-double'],
3030
'no-unused-expressions': ['error', {allowShortCircuit: true}],
3131
// https://github.com/yannickcr/eslint-plugin-react
32+
'react/default-props-match-prop-types': 'error',
3233
'react/display-name': 'error',
3334
'react/forbid-component-props': 'off',
3435
'react/forbid-elements': 'off',
@@ -68,6 +69,7 @@ module.exports = {
6869
'react/no-find-dom-node': 'error',
6970
'react/no-is-mounted': 'error',
7071
'react/no-multi-comp': ['error', {ignoreStateless: true}],
72+
'react/no-redundant-should-component-update': 'error',
7173
'react/no-render-return-value': 'error',
7274
'react/no-set-state': 'off',
7375
'react/no-string-refs': 'error',

0 commit comments

Comments
 (0)