Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ampliffyBidAdapter.js: remove linter exceptions #11666

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions modules/ampliffyBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,6 @@ function extractTrackingURL(htmlContent, ret) {
const trackingUrlDiv = htmlContent.querySelectorAll('[bidder-tracking-url]')[0];
if (trackingUrlDiv) {
const trackingUrl = trackingUrlDiv.getAttribute('bidder-tracking-url');
// eslint-disable-next-line no-console
logInfo(LOG_PREFIX + 'parseXML: trackingUrl: ', trackingUrl)
ret.trackingUrl = trackingUrl;
}
Expand All @@ -304,10 +303,8 @@ export function parseXML(xml, bid) {
ret.userSyncs = extractSyncs(htmlContent);
}
} catch (e) {
// eslint-disable-next-line no-console
logError(LOG_PREFIX + 'Error parsing XML', e);
}
// eslint-disable-next-line no-console
logInfo(LOG_PREFIX + 'parseXML RET:', ret);

return ret;
Expand Down Expand Up @@ -341,7 +338,6 @@ export function isAllowedToBidUp(html, currentURL) {
}
}
} catch (e) {
// eslint-disable-next-line no-console
logError(LOG_PREFIX + 'isAllowedToBidUp', e);
}
return allowedToPush;
Expand Down Expand Up @@ -399,7 +395,6 @@ function onBidWon(bid) {
}
}
function onTimeOut() {
// eslint-disable-next-line no-console
logInfo(LOG_PREFIX + 'TIMEOUT');
}

Expand Down