Fixed high number of ESLint errors
This commit is contained in:
@@ -18,7 +18,7 @@ function CheckNotificationPermissions(ToggleOnOff) {
|
||||
|
||||
// Check if the browser supports notifications and which type
|
||||
if (!('Notification' in window)) {
|
||||
console.log('This browser does not support notifications.');
|
||||
console.log('This browser does not support notifications.'); // eslint-disable-line no-console
|
||||
} else if (checkNotificationPromise()) {
|
||||
Notification.requestPermission().then();
|
||||
} else {
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* eslint-disable no-return-assign */
|
||||
import { CacheGoldenShimmersByID } from '../../Cache/VariablesAndData';
|
||||
import { GCTimers } from '../../Disp/VariablesAndData';
|
||||
import { CMOptions } from '../VariablesAndData';
|
||||
@@ -15,6 +14,7 @@ export default function ToggleGCTimer() {
|
||||
GCTimers[i].style.top = CacheGoldenShimmersByID[i].l.style.top;
|
||||
});
|
||||
} else {
|
||||
// eslint-disable-next-line no-return-assign
|
||||
Object.keys(GCTimers).forEach((i) => (GCTimers[i].style.display = 'none'));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,2 @@
|
||||
/* eslint-disable prefer-const */
|
||||
|
||||
export let CMOptions = {};
|
||||
export let CMOptions = {}; // eslint-disable-line prefer-const
|
||||
export const ConfigPrefix = 'CMConfig';
|
||||
|
||||
Reference in New Issue
Block a user