remove unused imports

This commit is contained in:
Athou
2025-04-09 20:02:21 +02:00
parent 3d371d5942
commit dfab678070
4 changed files with 8 additions and 3 deletions

View File

@@ -13,6 +13,13 @@
"arrowParentheses": "asNeeded"
}
},
"linter": {
"rules": {
"correctness": {
"noUnusedImports": "error"
}
}
},
"files": {
"ignore": ["dist", "node_modules", "target", "target-ide"]
}

View File

@@ -1,7 +1,6 @@
import { MantineProvider } from "@mantine/core"
import { render } from "@testing-library/react"
import { Content } from "components/content/Content"
import React from "react"
import { describe, expect, it } from "vitest"
describe("Content component", () => {

View File

@@ -1,7 +1,6 @@
import { Trans } from "@lingui/react/macro"
import { Anchor, Box, Code, Container, Group, List, Title } from "@mantine/core"
import { Constants } from "app/constants"
import React from "react"
import { TbBrandGithub, TbBrandPaypal, TbCoinBitcoin, TbHeartFilled } from "react-icons/tb"
const iconSize = 24

View File

@@ -1,7 +1,7 @@
import { lingui } from "@lingui/vite-plugin"
import react from "@vitejs/plugin-react"
import { visualizer } from "rollup-plugin-visualizer"
import { type PluginOption, defineConfig } from "vite"
import { defineConfig } from "vite"
import checker from "vite-plugin-checker"
import tsconfigPaths from "vite-tsconfig-paths"