Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjoeyyong committed Jan 22, 2025
1 parent 1224fb9 commit 01ca3c9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions grunt/aliases.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
'test': [
'karma:chrome',
'karma:firefox'
'karma:chrome',
'karma:firefox',
],


Expand Down
4 changes: 2 additions & 2 deletions grunt/karma.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var path = require('path');
var path = require('path')

module.exports = {
options: {
Expand Down Expand Up @@ -95,4 +95,4 @@ module.exports = {
},
},
},
};
}
2 changes: 1 addition & 1 deletion src/reactor.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ConsoleGroupLogger } from './logging'
import { isKeyPath } from './key-path'
import { isGetter } from './getter'
import { toJS } from './immutable-helpers'
import { extend, toFactory } from './utils'
import { toFactory } from './utils'
import {
ReactorState,
ObserverState,
Expand Down
2 changes: 1 addition & 1 deletion tests/reactor-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Reactor, Store } from '../src/main'
import { getOption } from '../src/reactor/fns'
import { toImmutable } from '../src/immutable-helpers'
import { PROD_OPTIONS, DEBUG_OPTIONS } from '../src/reactor/records'
import { NoopLogger, ConsoleGroupLogger } from '../src/logging'
import { ConsoleGroupLogger } from '../src/logging'

describe('Reactor', () => {
it('should construct without \'new\'', () => {
Expand Down

0 comments on commit 01ca3c9

Please sign in to comment.