Skip to content

Commit 950c1fc

Browse files
committed
refactor(website): remove unused ESLint plugins section from homepage
1 parent 92a7948 commit 950c1fc

File tree

1 file changed

+0
-39
lines changed

1 file changed

+0
-39
lines changed

apps/website/app/(home)/page.tsx

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -11,39 +11,6 @@ const features = [
1111
["Comprehensive", "Handles complex scenarios and identifies problems that other tools might miss."],
1212
] as const;
1313

14-
const plugins = [
15-
[
16-
"eslint-plugin-react-x",
17-
"Core rules (renderer-agnostic, compatible with x-platform).",
18-
"https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x",
19-
],
20-
[
21-
"eslint-plugin-react-dom",
22-
"DOM specific rules for React DOM.",
23-
"https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom",
24-
],
25-
[
26-
"eslint-plugin-react-web-api",
27-
"Rules for interacting with Web APIs.",
28-
"https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-web-api",
29-
],
30-
[
31-
"eslint-plugin-react-hooks-extra",
32-
"Extra React Hooks rules.",
33-
"https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-hooks-extra",
34-
],
35-
[
36-
"eslint-plugin-react-naming-convention",
37-
"Naming convention rules.",
38-
"https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-naming-convention",
39-
],
40-
[
41-
"@eslint-react/eslint-plugin",
42-
"Main plugin combining all rules and presets from the above packages.",
43-
"https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin",
44-
],
45-
] as const;
46-
4714
export default function HomePage() {
4815
return (
4916
<main className="w-full min-w-0 max-w-6xl px-8 pt-4 pb-12 md:px-12 mx-auto">
@@ -56,12 +23,6 @@ export default function HomePage() {
5623
<Cards className="grid grid-cols-1 gap-4 md:grid-cols-4">
5724
{features.map(([title, description]) => <Card description={description} key={title} title={title} />)}
5825
</Cards>
59-
<h2>ESLint Plugins</h2>
60-
<Cards className="grid grid-cols-1 gap-4 md:grid-cols-2">
61-
{plugins.map(([title, description, href]) => (
62-
<Card description={description} href={href} key={title} title={title} />
63-
))}
64-
</Cards>
6526
<h2>Roadmap</h2>
6627
<p>
6728
Check out the <Link href="/roadmap">roadmap</Link> to see what's planned for the future.

0 commit comments

Comments
 (0)