style: lint + format

This commit is contained in:
laurejablonski 2025-04-27 10:35:22 +02:00
parent 78b5864f68
commit 844cc6a1a1
11 changed files with 25 additions and 40 deletions

View file

@ -28,29 +28,29 @@ export function getTestleerling1(): Student {
}
export function getNoordkaap(): Student {
return testStudents.find((it) => it.username == 'Noordkaap')!;
return testStudents.find((it) => it.username === 'Noordkaap')!;
}
export function getDireStraits(): Student {
return testStudents.find((it) => it.username == 'DireStraits')!;
return testStudents.find((it) => it.username === 'DireStraits')!;
}
export function getTool(): Student {
return testStudents.find((it) => it.username == 'Tool')!;
return testStudents.find((it) => it.username === 'Tool')!;
}
export function getSmashingPumpkins(): Student {
return testStudents.find((it) => it.username == 'SmashingPumpkins')!;
return testStudents.find((it) => it.username === 'SmashingPumpkins')!;
}
export function getPinkFloyd(): Student {
return testStudents.find((it) => it.username == 'PinkFloyd')!;
return testStudents.find((it) => it.username === 'PinkFloyd')!;
}
export function getTheDoors(): Student {
return testStudents.find((it) => it.username == 'TheDoors')!;
return testStudents.find((it) => it.username === 'TheDoors')!;
}
export function getNirvana(): Student {
return testStudents.find((it) => it.username == 'Nirvana')!;
return testStudents.find((it) => it.username === 'Nirvana')!;
}