Skip to content

Commit

Permalink
fix extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
donavanbecker committed Oct 25, 2024
1 parent ab679fc commit 09544df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default antfu(
},
rules: {
'curly': ['error', 'multi-line'],
'import/extensions': 'off',
'import/extensions': ['error', 'ignorePackages'],
'import/order': 0,
'jsdoc/check-alignment': 'error',
'jsdoc/check-line-alignment': 'error',
Expand Down
4 changes: 2 additions & 2 deletions src/streamingDelegate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ import {
} from 'homebridge'
import pickPort from 'pick-port'

import { FfmpegProcess } from './ffmpeg'
import { FRAGMENTS_LENGTH, PREBUFFER_LENGTH, RecordingDelegate } from './recordingDelegate'
import { FfmpegProcess } from './ffmpeg.js'
import { FRAGMENTS_LENGTH, PREBUFFER_LENGTH, RecordingDelegate } from './recordingDelegate.js'

interface SessionInfo {
address: string // address of the HAP controller
Expand Down

0 comments on commit 09544df

Please sign in to comment.