Fix all 93 ESLint issues (3 errors, 90 warnings) (#666)

This commit is contained in:
Thomas Durieux
2026-04-15 09:04:22 +02:00
committed by GitHub
parent 1d97c76e7e
commit f4209110c7
28 changed files with 77 additions and 69 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ export default class Conference {
* @param status the new status
* @param errorMessage a potential error message to display
*/
async updateStatus(status: ConferenceStatus, errorMessage?: string) {
async updateStatus(status: ConferenceStatus, _errorMessage?: string) {
this._data.status = status;
await this._data.save();
return;
@@ -104,7 +104,7 @@ export default class Conference {
return this._data.options;
}
toJSON(opt?: { billing: boolean }): any {
toJSON(_opt?: { billing: boolean }): Record<string, unknown> {
const pricePerHourPerRepo = this._data.plan.pricePerRepository / 30;
let price = 0;
const today =