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

@@ -4,7 +4,7 @@ import CacheAvgCPS from './CPS/CPS';
import CacheCurrWrinklerCPS from './CPS/CurrWrinklerCPS';
import CachePP from './PP/PP';
import CacheHeavenlyChipsPS from './Stats/HeavenlyChips';
import { CacheTimeTillNextPrestige } from './VariablesAndData';
import { CacheTimeTillNextPrestige } from './VariablesAndData'; // eslint-disable-line no-unused-vars
import CacheWrinklers from './Wrinklers/Wrinklers';
/**
@@ -25,5 +25,5 @@ export default function LoopCache() {
Math.floor(Game.HowMuchPrestige(Game.cookiesReset + Game.cookiesEarned)) + 1,
) -
(Game.cookiesEarned + Game.cookiesReset);
CacheTimeTillNextPrestige = FormatTime(cookiesToNext / GetCPS()); // eslint-disable-line no-unused-vars
CacheTimeTillNextPrestige = FormatTime(cookiesToNext / GetCPS());
}