Skip to content

Commit 01ca3c9

Browse files
committed
lint fixes
1 parent 1224fb9 commit 01ca3c9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

grunt/aliases.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
'test': [
3-
'karma:chrome',
4-
'karma:firefox'
3+
'karma:chrome',
4+
'karma:firefox',
55
],
66

77

grunt/karma.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var path = require('path');
1+
var path = require('path')
22

33
module.exports = {
44
options: {
@@ -95,4 +95,4 @@ module.exports = {
9595
},
9696
},
9797
},
98-
};
98+
}

src/reactor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ConsoleGroupLogger } from './logging'
66
import { isKeyPath } from './key-path'
77
import { isGetter } from './getter'
88
import { toJS } from './immutable-helpers'
9-
import { extend, toFactory } from './utils'
9+
import { toFactory } from './utils'
1010
import {
1111
ReactorState,
1212
ObserverState,

tests/reactor-tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Reactor, Store } from '../src/main'
33
import { getOption } from '../src/reactor/fns'
44
import { toImmutable } from '../src/immutable-helpers'
55
import { PROD_OPTIONS, DEBUG_OPTIONS } from '../src/reactor/records'
6-
import { NoopLogger, ConsoleGroupLogger } from '../src/logging'
6+
import { ConsoleGroupLogger } from '../src/logging'
77

88
describe('Reactor', () => {
99
it('should construct without \'new\'', () => {

0 commit comments

Comments
 (0)