Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
goatslacker committed Jun 30, 2015
1 parent 0294db2 commit 36722ad
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
}],
"no-use-before-define": 2,
// possible errors
"comma-dangle": [2, "never"],
"comma-dangle": [0, "always"],
"no-cond-assign": [2, "always"],
"no-debugger": 1,
"no-alert": 1,
Expand Down
4 changes: 2 additions & 2 deletions src/utils/Debugger.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*eslint-disable */
import DebugActions from './debug/DebugActions'
import DispatcherDebugger from './DispatcherDebugger'
import React, { Component } from 'react'
import React from 'react'
import StoreExplorer from './StoreExplorer'

class Debugger extends Component {
class Debugger extends React.Component {
componentDidMount() {
DebugActions.setAlt(this.props.alt)
}
Expand Down
4 changes: 2 additions & 2 deletions src/utils/DispatcherDebugger.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*eslint-disable */
import React, { Component } from 'react'
import React from 'react'
import { Column, Table } from 'fixed-data-table'
import makeFinalStore from './makeFinalStore'
import connectToStores from './connectToStores'
Expand All @@ -9,7 +9,7 @@ import FixedDataTableCss from './debug/FixedDataTableCss'
import DebugActions from './debug/DebugActions'
import DispatcherStore from './debug/DispatcherStore'

class DispatcherDebugger extends Component {
class DispatcherDebugger extends React.Component {
constructor() {
super()

Expand Down
4 changes: 2 additions & 2 deletions src/utils/StoreExplorer.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import AltStore from './debug/AltStore'
import DebugActions from './debug/DebugActions'
import React, { Component } from 'react'
import React from 'react'
import connectToStores from './connectToStores'

class StoreExplorer extends Component {
class StoreExplorer extends React.Component {
constructor() {
super()

Expand Down
4 changes: 2 additions & 2 deletions src/utils/debug/AltStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export default alt.createStore(class {
})
}

setAlt(alt) {
this.alt = alt
setAlt(altInst) {
this.alt = altInst
this.stores = Object.keys(this.alt.stores).map((name) => {
return this.alt.stores[name]
})
Expand Down
4 changes: 2 additions & 2 deletions src/utils/debug/FixedDataTableCss.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 36722ad

Please sign in to comment.