Skip to content

Commit

Permalink
style(javascript): Update formatter to single quotes and spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenybai committed Jan 4, 2025
1 parent 56a185d commit 056903f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@
},
"javascript": {
"formatter": {
"quoteStyle": "double"
"quoteStyle": "single",
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80,
"lineEnding": "lf"
}
}
}
1 change: 1 addition & 0 deletions src/scan/canvas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export const lerp = (start: number, end: number) => {
return Math.floor(start + (end - start) * INTERPOLATION_SPEED);
};


export const MAX_PARTS_LENGTH = 4;
export const MAX_LABEL_LENGTH = 40;
export const TOTAL_FRAMES = 45;
Expand Down

0 comments on commit 056903f

Please sign in to comment.