Skip to content

Commit 389910b

Browse files
committed
Fix linter
1 parent 5c69a98 commit 389910b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/push-notifications.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable import/no-import-module-exports */
2-
2+
/* eslint-disable-next-line no-global-assign */
33
import sendGCM from './sendGCM';
44
import sendFCM from './sendFCM';
55
import APN from './sendAPN';

src/sendWNS.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ const sendWNS = (_regIds, _data, settings) => {
7676
if (opts.accessToken) {
7777
sendPromises = [];
7878
const regIds = [..._regIds];
79-
// eslint-disable-next-line max-len
8079
promises.push(
8180
new Promise((resolve, reject) => {
8281
sendNotifications(regIds, notificationMethod, data, opts, (err) =>
@@ -85,7 +84,6 @@ const sendWNS = (_regIds, _data, settings) => {
8584
})
8685
);
8786
} else {
88-
// eslint-disable-next-line max-len
8987
_regIds.forEach((regId) =>
9088
promises.push(
9189
new Promise((resolve) => {

0 commit comments

Comments
 (0)