Commit f14bd87c authored by Vitaly Slobodin's avatar Vitaly Slobodin

Remove unused eslint-disable directives

parent 40fc9399
...@@ -117,7 +117,6 @@ const boardsStore = { ...@@ -117,7 +117,6 @@ const boardsStore = {
}, },
updateNewListDropdown(listId) { updateNewListDropdown(listId) {
// eslint-disable-next-line no-unused-expressions
document document
.querySelector(`.js-board-list-${getIdFromGraphQLId(listId)}`) .querySelector(`.js-board-list-${getIdFromGraphQLId(listId)}`)
?.classList.remove('is-active'); ?.classList.remove('is-active');
......
...@@ -71,7 +71,7 @@ if (gon?.disable_animations) { ...@@ -71,7 +71,7 @@ if (gon?.disable_animations) {
// inject test utilities if necessary // inject test utilities if necessary
if (process.env.NODE_ENV !== 'production' && gon?.test_env) { if (process.env.NODE_ENV !== 'production' && gon?.test_env) {
disableJQueryAnimations(); disableJQueryAnimations();
import(/* webpackMode: "eager" */ './test_utils/'); // eslint-disable-line no-unused-expressions import(/* webpackMode: "eager" */ './test_utils/');
} }
document.addEventListener('beforeunload', () => { document.addEventListener('beforeunload', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment