Skip to content

Commit

Permalink
Fixed minor linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
codeaid committed Jun 27, 2024
1 parent d24f850 commit 54ee472
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/scripts/companion/animals.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { fauna } from 'config/animals';
import en from 'locales';
import { type AnimalKey, trophyRangesMap } from './data/animalsTrophyRanges';
import type { AnimalKey } from './data/animalsTrophyRanges';
import { trophyRangesMap } from './data/animalsTrophyRanges';

export default fauna.map(entry => {
const trophy = trophyRangesMap.get(entry.heading as AnimalKey);
Expand Down
3 changes: 2 additions & 1 deletion src/scripts/companion/firearms.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { weapons } from 'config/weapons';
import { type WeaponKey, magazineSizesMap } from './data/firearmsMagazineSizes';
import type { WeaponKey } from './data/firearmsMagazineSizes';
import { magazineSizesMap } from './data/firearmsMagazineSizes';

export default weapons.map(entry => {
const caliber = entry.heading.startsWith('WEAPON:BOW')
Expand Down

0 comments on commit 54ee472

Please sign in to comment.