chore: liniting

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-12-20 05:14:31 -08:00
parent b25c1cd4b4
commit 3bfe860d6f
4 changed files with 39 additions and 46 deletions

View file

@ -16,7 +16,10 @@ const INTEGRATIONS: Integration[] = [
{ name: "Elasticsearch", icon: "https://cdn.simpleicons.org/elastic/00A9E5" }, { name: "Elasticsearch", icon: "https://cdn.simpleicons.org/elastic/00A9E5" },
// Communication // Communication
{ name: "Slack", icon: "https://upload.wikimedia.org/wikipedia/commons/d/d5/Slack_icon_2019.svg" }, {
name: "Slack",
icon: "https://upload.wikimedia.org/wikipedia/commons/d/d5/Slack_icon_2019.svg",
},
{ name: "Discord", icon: "https://cdn.simpleicons.org/discord/5865F2" }, { name: "Discord", icon: "https://cdn.simpleicons.org/discord/5865F2" },
{ name: "Gmail", icon: "https://cdn.simpleicons.org/gmail/EA4335" }, { name: "Gmail", icon: "https://cdn.simpleicons.org/gmail/EA4335" },

View file

@ -1,5 +1,5 @@
import { docs } from "@/.source/server";
import { loader } from "fumadocs-core/source"; import { loader } from "fumadocs-core/source";
import { docs } from "@/.source/server";
export const source = loader({ export const source = loader({
baseUrl: "/docs", baseUrl: "/docs",

View file

@ -1,4 +1,4 @@
import { defineDocs, defineConfig } from "fumadocs-mdx/config"; import { defineConfig, defineDocs } from "fumadocs-mdx/config";
export const docs = defineDocs({ export const docs = defineDocs({
dir: "content/docs", dir: "content/docs",

View file

@ -1,45 +1,35 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2017", "target": "ES2017",
"lib": [ "lib": ["dom", "dom.iterable", "esnext"],
"dom", "allowJs": true,
"dom.iterable", "skipLibCheck": true,
"esnext" "strict": true,
], "noEmit": true,
"allowJs": true, "esModuleInterop": true,
"skipLibCheck": true, "module": "esnext",
"strict": true, "moduleResolution": "bundler",
"noEmit": true, "resolveJsonModule": true,
"esModuleInterop": true, "isolatedModules": true,
"module": "esnext", "jsx": "react-jsx",
"moduleResolution": "bundler", "incremental": true,
"resolveJsonModule": true, "plugins": [
"isolatedModules": true, {
"jsx": "react-jsx", "name": "next"
"incremental": true, }
"plugins": [ ],
{ "paths": {
"name": "next" "@/*": ["./*"],
} "fumadocs-mdx:collections/*": ["./.source/*"]
], }
"paths": { },
"@/*": [ "include": [
"./*" "next-env.d.ts",
], "**/*.ts",
"fumadocs-mdx:collections/*": [ "**/*.tsx",
"./.source/*" ".next/types/**/*.ts",
] "next.config.mjs",
} ".next/dev/types/**/*.ts"
}, ],
"include": [ "exclude": ["node_modules"]
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"next.config.mjs",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
} }