uselotus / lotus

File .deepsource.toml not found in the default branch of the repository root. Please refer to the docs.

Found unused variables in TypeScript code JS-0356
Performance
Major
a year agoa year old
'vitePluginImp' is defined but never used. Allowed unused vars must match /^_/u
 1import { defineConfig } from "vite";
 2import react from "@vitejs/plugin-react";
 3import vitePluginImp from "vite-plugin-imp"; 4import { splitVendorChunkPlugin } from "vite";
 5import tsconfigPaths from "vite-tsconfig-paths";
 6
'InvoiceOrganization' is defined but never used. Allowed unused vars must match /^_/u
31  name: string;
32}
33
34interface InvoiceOrganization {35  company_name: string;
36}
37
'CreatePlanType' is defined but never used. Allowed unused vars must match /^_/u
 1import { CreatePlanType, PlanType } from "./plan-type"; 2
 3export interface BacktestType {
 4  backtest_name: string;
'SubscriptionType' is defined but never used. Allowed unused vars must match /^_/u
 1import { PlanDisplay } from "./plan-type";
 2import { SubscriptionType } from "./subscription-type"; 3import { BalanceAdjustments, InvoiceType} from "./invoice-type";
 4
 5export interface CustomerType {
'PlanDisplay' is defined but never used. Allowed unused vars must match /^_/u
 1import { PlanDisplay } from "./plan-type"; 2import { SubscriptionType } from "./subscription-type";
 3import { BalanceAdjustments, InvoiceType} from "./invoice-type";
 4