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

Commit e8285e2

Browse files
committed
style: fix linting issues
1 parent 265710b commit e8285e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/init.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export default {
126126
},
127127

128128
deactivate() {
129-
this.idleCallbacks.forEach(callbackID => window.cancelIdleCallback(callbackID));
129+
this.idleCallbacks.forEach((callbackID) => window.cancelIdleCallback(callbackID));
130130
this.idleCallbacks.clear();
131131
this.subscriptions.dispose();
132132
},
@@ -181,7 +181,7 @@ export default {
181181
);
182182
} catch (error) {
183183
const notifications = atom.notifications.getNotifications();
184-
const isDisplayingNotification = notifications.some(notification => (
184+
const isDisplayingNotification = notifications.some((notification) => (
185185
notification.message === `Error: ${error.message}`
186186
&& notification.dismissed === false
187187
));

0 commit comments

Comments
 (0)