mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Remove some unused "eslint-ignore" calls
This commit is contained in:
parent
7d9e2d038a
commit
f09bfd18aa
|
@ -56,12 +56,10 @@ const tradeModesTyped = computed(() => {
|
|||
|
||||
const tradeModes = computed(() => {
|
||||
return tradeModesTyped.value.map((tm) => {
|
||||
return (
|
||||
{
|
||||
text: `${tm.margin_mode} ${tm.trading_mode}`,
|
||||
value: tm,
|
||||
} ?? []
|
||||
);
|
||||
return {
|
||||
text: `${tm.margin_mode} ${tm.trading_mode}`,
|
||||
value: tm,
|
||||
};
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
@ -93,7 +93,6 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
import { formatPercent, formatPrice } from '@/shared/formatters';
|
||||
import { MultiDeletePayload, MultiForcesellPayload, Trade } from '@/types';
|
||||
|
||||
|
|
1
src/env.d.ts
vendored
1
src/env.d.ts
vendored
|
@ -6,7 +6,6 @@ interface ImportMetaEnv extends Readonly<Record<string, string>> {
|
|||
readonly DEV: boolean;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
interface ImportMeta {
|
||||
readonly env: ImportMetaEnv;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user