Skip to content

Commit

Permalink
eslint autofix.
Browse files Browse the repository at this point in the history
  • Loading branch information
ronyeh committed Jun 21, 2023
1 parent 19ddc35 commit 625ab61
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/fonts/load_petaluma.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
// [VexFlow](https://vexflow.com) - Copyright (c) Mohit Muthanna 2010.
// MIT License

import { Font } from '../font';
import { ChordSymbolGlyphMetrics } from '../chordsymbol';
import { Font, FontMetrics } from '../font';
import { CommonMetrics } from './common_metrics';
import { PetalumaFont } from './petaluma_glyphs';
import { ChordSymbolGlyphMetrics } from '../chordsymbol';
import { FontMetrics } from '../font';

const petalumaChordMetrics: Record<string, ChordSymbolGlyphMetrics> = {
csymDiminished: {
Expand Down Expand Up @@ -77,8 +76,9 @@ const petalumaChordMetrics: Record<string, ChordSymbolGlyphMetrics> = {
leftSideBearing: -10,
advanceWidth: 228,
yOffset: -284,
}
}
},
};

export function loadPetaluma() {
const metrics: FontMetrics = JSON.parse(JSON.stringify(CommonMetrics));
const chordMetrics = metrics.chordSymbol;
Expand Down

0 comments on commit 625ab61

Please sign in to comment.