Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 1e9c5d4

Browse files
fix: remove outdated import
1 parent 23f2baa commit 1e9c5d4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/main.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { CompositeDisposable } from 'atom';
44
// eslint-disable-next-line import/no-unresolved
55
import { shell } from 'electron';
66
import Path from 'path';
7-
import { diff } from 'deep-object-diff';
87

98
import console from './console';
109
import Config from './config';
@@ -113,7 +112,7 @@ export default {
113112
Config.onConfigDidChange(
114113
(config, prevConfig) => {
115114
this.inactive = false;
116-
console.debug('Config changed:', config, prevConfig, diff(prevConfig, config));
115+
console.debug('Config changed:', config, prevConfig);
117116
if (helpers.configShouldInvalidateWorkerCache(config, prevConfig)) {
118117
this.clearESLintCache();
119118
}

0 commit comments

Comments
 (0)