From 01ca3c9595b3adfe53122214e934f06144da2798 Mon Sep 17 00:00:00 2001 From: alexjoeyyong <96444887+alexjoeyyong@users.noreply.github.com> Date: Wed, 22 Jan 2025 22:41:04 +0000 Subject: [PATCH] lint fixes --- grunt/aliases.js | 4 ++-- grunt/karma.js | 4 ++-- src/reactor.js | 2 +- tests/reactor-tests.js | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/grunt/aliases.js b/grunt/aliases.js index e102db5..eb999dc 100644 --- a/grunt/aliases.js +++ b/grunt/aliases.js @@ -1,7 +1,7 @@ module.exports = { 'test': [ - 'karma:chrome', - 'karma:firefox' + 'karma:chrome', + 'karma:firefox', ], diff --git a/grunt/karma.js b/grunt/karma.js index bdc5e4a..f9e8b93 100644 --- a/grunt/karma.js +++ b/grunt/karma.js @@ -1,4 +1,4 @@ -var path = require('path'); +var path = require('path') module.exports = { options: { @@ -95,4 +95,4 @@ module.exports = { }, }, }, -}; +} diff --git a/src/reactor.js b/src/reactor.js index 4b95a13..82d9f82 100644 --- a/src/reactor.js +++ b/src/reactor.js @@ -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, diff --git a/tests/reactor-tests.js b/tests/reactor-tests.js index bc107bf..49816e2 100644 --- a/tests/reactor-tests.js +++ b/tests/reactor-tests.js @@ -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\'', () => {