style: format code and add missing newlines

This commit is contained in:
Jan-Marlon Leibl 2025-04-02 09:08:04 +02:00
commit 2d8b137e69
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
3 changed files with 11 additions and 6 deletions

View file

@ -3,7 +3,7 @@ import { Card } from '../models/blackjack.model';
import { GameState } from '../../../../enum/gameState';
@Injectable({
providedIn: 'root'
providedIn: 'root',
})
export class GameControlsService {
calculateHandValue(cards: Card[]): number {
@ -71,4 +71,4 @@ export class GameControlsService {
return 'text-white';
}
}
}
}