Skip to content

Commit

Permalink
fix: player ci
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-heimbuch committed Nov 12, 2023
1 parent 815fc21 commit 2cf27ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion apps/player/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-namespace": 0,
"vue/multi-word-component-names": 0
"vue/multi-word-component-names": 0,
"@typescript-eslint/ban-ts-comment": 0
}
}
6 changes: 3 additions & 3 deletions apps/player/src/shims-vue.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<object, object, any>;
export default component;
}
1 change: 0 additions & 1 deletion apps/player/src/store/selectors/share.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { createSelector } from 'reselect';
import { prop } from 'ramda';
import { selectors as content } from '@podlove/player-state/content';
import { selectors as embed } from '@podlove/player-state/embed';
import { toHumanTime } from '@podlove/utils/time';
Expand Down

0 comments on commit 2cf27ab

Please sign in to comment.