Updated ESLint to 7.25.0

This commit is contained in:
Daniël van Noord
2021-05-02 11:44:27 +02:00
parent eb71fd9bd2
commit 941ccfeb79
38 changed files with 148 additions and 148 deletions

View File

@@ -3,7 +3,7 @@
import Beautify from '../../Disp/BeautifyAndFormatting/Beautify';
import CopyData from '../../Sim/SimulationData/CopyData';
import { SimDoSims, SimObjects } from '../../Sim/VariablesAndData';
import { CacheCostDragonUpgrade, CacheLastDragonLevel } from '../VariablesAndData';
import { CacheCostDragonUpgrade, CacheLastDragonLevel } from '../VariablesAndData'; // eslint-disable-line no-unused-vars
/**
* This functions caches the current cost of upgrading the dragon level so it can be displayed in the tooltip
@@ -56,7 +56,7 @@ export default function CacheDragonCost() {
cost += price;
SimObjects[target].amount -= 1;
}
CacheCostDragonUpgrade = `Cost to rebuy: ${Beautify(cost)}`; // eslint-disable-line no-unused-vars
CacheCostDragonUpgrade = `Cost to rebuy: ${Beautify(cost)}`;
});
}
}