Skip to content

Commit 625ab61

Browse files
committed
eslint autofix.
1 parent 19ddc35 commit 625ab61

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/fonts/load_petaluma.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
// [VexFlow](https://vexflow.com) - Copyright (c) Mohit Muthanna 2010.
22
// MIT License
33

4-
import { Font } from '../font';
4+
import { ChordSymbolGlyphMetrics } from '../chordsymbol';
5+
import { Font, FontMetrics } from '../font';
56
import { CommonMetrics } from './common_metrics';
67
import { PetalumaFont } from './petaluma_glyphs';
7-
import { ChordSymbolGlyphMetrics } from '../chordsymbol';
8-
import { FontMetrics } from '../font';
98

109
const petalumaChordMetrics: Record<string, ChordSymbolGlyphMetrics> = {
1110
csymDiminished: {
@@ -77,8 +76,9 @@ const petalumaChordMetrics: Record<string, ChordSymbolGlyphMetrics> = {
7776
leftSideBearing: -10,
7877
advanceWidth: 228,
7978
yOffset: -284,
80-
}
81-
}
79+
},
80+
};
81+
8282
export function loadPetaluma() {
8383
const metrics: FontMetrics = JSON.parse(JSON.stringify(CommonMetrics));
8484
const chordMetrics = metrics.chordSymbol;

0 commit comments

Comments
 (0)