Skip to content

Commit

Permalink
CI: ESLintのany警告を無効化 (VOICEVOX#1285)
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi authored Apr 11, 2023
1 parent 737eef0 commit e774a4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/store/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ const proxyStoreCreator = (_engineFactory: IEngineConnectorFactory) => {
const instance = _engineFactory.instance(engineInfo.host);
return Promise.resolve({
invoke: (v) => (arg) =>
// FIXME: anyを使わないようにする
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
// eslint-disable-next-line @typescript-eslint/no-explicit-any
instance[v](arg) as any,
});
},
Expand Down
2 changes: 2 additions & 0 deletions src/store/vuex.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
// FIXME: anyを使わないようにする
import { InjectionKey } from "vue";
import {
Store as BaseStore,
Expand Down

0 comments on commit e774a4e

Please sign in to comment.