This commit is contained in:
Jori Lallo
2016-08-03 15:00:17 +03:00
parent 030dfd383b
commit 5c64321c17
2 changed files with 6 additions and 4 deletions

View File

@@ -4,7 +4,9 @@
"rules": { "rules": {
"arrow-body-style":[0, "as-needed"], // fix `this` shortcut on ES6 classes "arrow-body-style":[0, "as-needed"], // fix `this` shortcut on ES6 classes
"react/jsx-no-bind": 0, // Makes difficult to pass args to prop functions "react/jsx-no-bind": 0, // Makes difficult to pass args to prop functions
"react/jsx-curly-spacing": [2, "always"], // Spaces inside curlies "react/jsx-curly-spacing": [2, "always", {"spacing": {
"objectLiterals": "never"
}}], // Spaces inside curlies, except prop={{}}
"react/prefer-stateless-function": 0, // Don't prefer stateless components "react/prefer-stateless-function": 0, // Don't prefer stateless components
"no-else-return": 0, "no-else-return": 0,
}, },

View File

@@ -30,7 +30,7 @@ window.stores = stores;
let DevTools; let DevTools;
if (__DEV__) { if (__DEV__) {
DevTools = require('mobx-react-devtools').default; DevTools = require('mobx-react-devtools').default; // eslint-disable-line global-require
} }
function requireAuth(nextState, replace) { function requireAuth(nextState, replace) {
@@ -43,7 +43,7 @@ function requireAuth(nextState, replace) {
} }
render(( render((
<div style={ { display: 'flex', flex: 1, minHeight: '100%' } }> <div style={{ display: 'flex', flex: 1, minHeight: '100%' }}>
<Provider { ...stores }> <Provider { ...stores }>
<Router history={ History }> <Router history={ History }>
<Route path="/" component={ Application }> <Route path="/" component={ Application }>
@@ -75,6 +75,6 @@ render((
</Route> </Route>
</Router> </Router>
</Provider> </Provider>
{ __DEV__ && <DevTools position={ { bottom: 0, right: 0 } } /> } { __DEV__ && <DevTools position={{ bottom: 0, right: 0 }} /> }
</div> </div>
), document.getElementById('root')); ), document.getElementById('root'));