From e751bea5ba74cb82877f9e81f13bd6e8d62df253 Mon Sep 17 00:00:00 2001 From: Blank_Alt <12406-Blank_Alt@users.noreply.gitgud.io> Date: Thu, 7 Nov 2019 00:24:45 -0800 Subject: [PATCH] jshint+eslint-cleaning --- .jshintignore | 4 ++++ src/js/DefaultRules.js | 2 +- src/js/utilJS.js | 4 ++-- src/pregmod/customizeSlaveTrade.tw | 2 +- src/uncategorized/bodyModification.tw | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 .jshintignore diff --git a/.jshintignore b/.jshintignore new file mode 100644 index 00000000000..e841f1696a7 --- /dev/null +++ b/.jshintignore @@ -0,0 +1,4 @@ +// Minified files +**/src/js/bugReport.js +**/dTree.min.js +**/js/displayVariables.js diff --git a/src/js/DefaultRules.js b/src/js/DefaultRules.js index e1a2f3a5e68..9341f094054 100644 --- a/src/js/DefaultRules.js +++ b/src/js/DefaultRules.js @@ -2910,7 +2910,7 @@ window.DefaultRules = (function() { */ function ProcessLabel(slave, rule) { //mass removal of old tags, variant from '*' mask. - if (rule.removeLabel !== null && rule.removeLabel !== '' && rule.removeLabel == '*') { + if (rule.removeLabel !== null && rule.removeLabel !== '' && rule.removeLabel === '*') { slave.custom.label = slave.custom.label.replace(/(?:\[.+\])+/, ""); r += `<br>All ${slave.slaveName}'s tags is removed.`; } diff --git a/src/js/utilJS.js b/src/js/utilJS.js index 4a814174e5b..2bedaf4f5eb 100644 --- a/src/js/utilJS.js +++ b/src/js/utilJS.js @@ -1071,7 +1071,7 @@ window.asPlural = function(single, plural) { single = asObj.single; plural = asObj.plural; } - if (plural == null) { + if (plural === null) { plural = single + "s"; } return plural; @@ -1189,7 +1189,7 @@ window.years = function(weeks) { return r; }; window.asDate = function(weeks, bonusDay = 0) { - if (weeks == null) { + if (weeks === null) { weeks = State.variables.week; } let d = new Date(2037, 0, 12); diff --git a/src/pregmod/customizeSlaveTrade.tw b/src/pregmod/customizeSlaveTrade.tw index 5bafb9f95c2..829a10963ea 100644 --- a/src/pregmod/customizeSlaveTrade.tw +++ b/src/pregmod/customizeSlaveTrade.tw @@ -44,5 +44,5 @@ var widgets = Story.widgets setTimeout(function() { new Wikifier(jQuery('#mod-presets'), widgets); }, 0); <</script>> <br><br> -<<click "Export Settings">><<script>>App.CustomSlaveTrade.export()<</script>><</click>> | <<click "Import Settings">><<script>>App.CustomSlaveTrade.import()<</script>><</click>> +<<link "Export Settings">><<script>>App.CustomSlaveTrade.export()<</script>><</link>> | <<link "Import Settings">><<script>>App.CustomSlaveTrade.import()<</script>><</link>> <div id="importExportArea"></div> diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw index c7d75c617f5..350ad37699c 100644 --- a/src/uncategorized/bodyModification.tw +++ b/src/uncategorized/bodyModification.tw @@ -951,7 +951,7 @@ Branding: $His skin is unmarked. <</if>> -<<if !(Object.values(State.variables.activeSlave.brand).includes(State.variables.brandDesign.official))>> +<<if !(Object.values($activeSlave.brand).includes($brandDesign.official))>> <br> $He lacks your [[official brand|Universal Rules]], "$brandDesign.official." <</if>> -- GitLab