Skip to content

Commit 6378591

Browse files
committed
fix stupid eslint rule breakage
1 parent c38e86e commit 6378591

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/index.ts

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
// functions
2+
import createStore from './createStore'
3+
import combineReducers from './combineReducers'
4+
import bindActionCreators from './bindActionCreators'
5+
import applyMiddleware from './applyMiddleware'
6+
import compose from './compose'
7+
import warning from './utils/warning'
8+
import __DO_NOT_USE__ActionTypes from './utils/actionTypes'
9+
110
// types
211
// store
312
export {
@@ -26,14 +35,6 @@ export { ActionCreator, ActionCreatorsMapObject } from '..'
2635
export { MiddlewareAPI, Middleware } from '..'
2736
// actions
2837
export { Action, AnyAction } from '..'
29-
// functions
30-
import createStore from './createStore'
31-
import combineReducers from './combineReducers'
32-
import bindActionCreators from './bindActionCreators'
33-
import applyMiddleware from './applyMiddleware'
34-
import compose from './compose'
35-
import warning from './utils/warning'
36-
import __DO_NOT_USE__ActionTypes from './utils/actionTypes'
3738

3839
/*
3940
* This is a dummy function to check if the function name has been altered by minification.

0 commit comments

Comments
 (0)