Lint app.js

This commit is contained in:
Grégoire Delattre 2017-06-02 21:20:54 +02:00
parent 50ae9c7a25
commit 14a0f19aa8

View File

@ -1,52 +1,51 @@
// Html page
import 'file-loader?name=[name].[ext]!../index.html'
import "file-loader?name=[name].[ext]!../index.html"
// Import default image
import 'file-loader?name=img/[name].png!../img/noimage.png'
import "file-loader?name=img/[name].png!../img/noimage.png"
// Import favicon settings
import 'file-loader?name=[name].png!../img/android-chrome-192x192.png'
import 'file-loader?name=[name].png!../img/android-chrome-512x512.png'
import 'file-loader?name=[name].png!../img/apple-touch-icon.png'
import 'file-loader?name=[name].png!../img/favicon-16x16.png'
import 'file-loader?name=[name].png!../img/favicon-32x32.png'
import 'file-loader?name=[name].png!../img/favicon.ico'
import 'file-loader?name=[name].png!../img/safari-pinned-tab.svg'
import "file-loader?name=[name].png!../img/android-chrome-192x192.png"
import "file-loader?name=[name].png!../img/android-chrome-512x512.png"
import "file-loader?name=[name].png!../img/apple-touch-icon.png"
import "file-loader?name=[name].png!../img/favicon-16x16.png"
import "file-loader?name=[name].png!../img/favicon-32x32.png"
import "file-loader?name=[name].png!../img/favicon.ico"
import "file-loader?name=[name].png!../img/safari-pinned-tab.svg"
// Import manifest
import 'file-loader?name=[name].json!../manifest.json'
import "file-loader?name=[name].json!../manifest.json"
// Styles
import '../less/app.less'
import "../less/app.less"
// React
import React from 'react'
import ReactDOM from 'react-dom'
import { bindActionCreators } from 'redux'
import { Provider, connect } from 'react-redux'
import { Router } from 'react-router'
import { routerActions } from 'react-router-redux'
import React from "react"
import ReactDOM from "react-dom"
import { bindActionCreators } from "redux"
import { Provider, connect } from "react-redux"
import { Router } from "react-router"
// Action creators
import { dismissAlert } from './actions/alerts'
import { dismissAlert } from "./actions/alerts"
// Store
import store, { history } from './store'
import store, { history } from "./store"
// Components
import NavBar from './components/navbar'
import Alert from './components/alerts/alert'
import NavBar from "./components/navbar"
import Alert from "./components/alerts/alert"
// Routes
import getRoutes from './routes'
import getRoutes from "./routes"
function mapStateToProps(state) {
let torrentCount = 0;
if (state.torrentStore.has('torrents') && state.torrentStore.get('torrents') !== undefined) {
torrentCount = state.torrentStore.get('torrents').size;
if (state.torrentStore.has("torrents") && state.torrentStore.get("torrents") !== undefined) {
torrentCount = state.torrentStore.get("torrents").size;
}
return {
username: state.userStore.get('username'),
username: state.userStore.get("username"),
torrentCount: torrentCount,
alerts: state.alerts,
}
@ -80,4 +79,4 @@ ReactDOM.render((
<Provider store={store}>
<Router history={history} routes={getRoutes(App)} />
</Provider>
),document.getElementById('app'));
),document.getElementById("app"));