Update outdated deps

This commit is contained in:
Tom MacWright
2016-05-13 16:39:44 -04:00
parent ab728f52f9
commit 974a9a58ab
2 changed files with 11 additions and 15 deletions

View File

@ -24,12 +24,13 @@
"no-underscore-dangle": [0],
"no-unused-vars": [2],
"no-use-before-define": [0],
"quotes": [2, "single"],
"react/display-name": [2, { "acceptTranspilerName": true }],
"quotes": [2, "single", { "allowTemplateLiterals": true }],
"react/display-name": [2],
"react/jsx-no-bind": 2,
"react/jsx-no-duplicate-props": 2,
"react/jsx-no-undef": 2,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"react/no-unknown-property": [2],
"react/prop-types": 2,
@ -37,11 +38,6 @@
"react/self-closing-comp": [2],
"react/wrap-multilines": [2],
"semi": [2, "always"],
"space-after-keywords": [2, "always"],
"space-before-blocks": 2,
"space-before-function-paren": [2, "never"],
"space-before-keywords": [2, "always"],
"space-in-parens": [2, "never"],
"strict": [0],
"valid-typeof": 2
}