Skip to content

Commit 7735170

Browse files
committed
Update linter parser, include eslint and fixup style
1 parent f8f512b commit 7735170

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@
3434
"devDependencies": {
3535
"babel": "^5.4.7",
3636
"babel-core": "^5.4.7",
37-
"babel-eslint": "^3.1.9",
37+
"babel-eslint": "^3.1.11",
3838
"babel-loader": "^5.1.2",
39+
"eslint": "^0.22.1",
3940
"eslint-plugin-react": "^2.3.0",
4041
"react-hot-loader": "^1.2.7",
4142
"rimraf": "^2.3.4",

src/addons/container.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function container(
1010
{ actions, stores },
1111
transformProps = defaultTransformProps
1212
) {
13-
return (DecoratedComponent) => class ReduxContainerDecorator {
13+
return DecoratedComponent => class ReduxContainerDecorator {
1414
static displayName = `ReduxContainer(${getDisplayName(DecoratedComponent)})`;
1515

1616
render() {

0 commit comments

Comments
 (0)