Skip to content
Snippets Groups Projects
Commit d249c114 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

assets: Fix eslint warnings

parent 77ba0cd6
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ describe('Code highlighting tests', function() {
cy.get(`.hljs-ln-numbers[data-line-number="${lineStart}"]`)
.click()
.get(`body`)
.type(`{shift}`, { release: false })
.type(`{shift}`, {release: false})
.get(`.hljs-ln-numbers[data-line-number="${lineEnd}"]`)
.click()
.get('.hljs-ln-line')
......
......@@ -139,7 +139,7 @@ export async function renderNotebook(nbJsonUrl, domElt) {
displayAlign: 'center',
'HTML-CSS': {
styles: {'.MathJax_Display': {'margin': 0}},
linebreaks: { automatic: true }
linebreaks: {automatic: true}
}
};
......
......@@ -11,7 +11,7 @@ import * as Sentry from '@sentry/browser';
// loaded.
export function sentryInit(sentryDsn) {
if (sentryDsn !== undefined) {
Sentry.init({ dsn: sentryDsn });
Sentry.init({dsn: sentryDsn});
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment