Skip to content

Commit

Permalink
xo eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
BKSteve committed Dec 11, 2024
1 parent c101f60 commit 539580a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@
"space": 4,
"rules": {
"unicorn/filename-case": "off",
"unicorn/prefer-node-append": "off"
"unicorn/prefer-node-append": "off",
"unicorn/prefer-global-this": "off",
"unicorn/expiring-todo-comments": "off"
},
"esnext": true,
"envs": [
Expand Down
2 changes: 1 addition & 1 deletion sickchill/gui/slick/js/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ const SICKCHILL = {
$('#testNMJv2-result').html(loading);
nmjv2.host = $('#nmjv2_host').val();
nmjv2.dbloc = '';
const radios = document.getElementsByName('nmjv2_dbloc');
const radios = document.getElementsByName('nmjv2_dbloc'); // eslint-disable-line unicorn/prefer-query-selector
for (const element of radios) {
if (element.checked) {
nmjv2.dbloc = element.value;
Expand Down

0 comments on commit 539580a

Please sign in to comment.