style: auto-fix linting issues

This commit is contained in:
JulienMaille 2026-01-30 21:00:33 +00:00 committed by github-actions[bot]
parent 37f9a3ebb2
commit 6764eea3e1

View file

@ -145,8 +145,9 @@ export class Visualizer {
this.analyser.getByteFrequencyData(this.dataArray);
// Bass (first bins only — cheap)
const volume = 10*Math.max(this.audio.volume, 0.1);
let bass = ((this.dataArray[0] + this.dataArray[1] + this.dataArray[2] + this.dataArray[3]) * 0.000980392) / volume;
const volume = 10 * Math.max(this.audio.volume, 0.1);
let bass =
((this.dataArray[0] + this.dataArray[1] + this.dataArray[2] + this.dataArray[3]) * 0.000980392) / volume;
const intensity = bass * bass;
const stats = this.stats;