Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flint.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { cspell } from "@flint.fyi/plugin-cspell";
import { flint } from "@flint.fyi/plugin-flint";
import { spelling } from "@flint.fyi/plugin-spelling";
import { defineConfig, globs, json, md, ts, yaml } from "flint";

export default defineConfig({
Expand Down Expand Up @@ -28,7 +28,7 @@ export default defineConfig({
},
{
files: globs.all,
rules: cspell.presets.logical,
rules: spelling.presets.logical,
},
],
});
3 changes: 3 additions & 0 deletions knip.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"ignoreDependencies": ["flint", "^@flint\\.fyi\\/.*"],
"ignoreExportsUsedInFile": { "interface": true, "type": true },
"workspaces": {
"packages/comparisons": {
"entry": ["src/sort-data.ts"]
},
"packages/site": {
"entry": ["src/components/*.astro"],
"ignoreDependencies": ["sharp"]
Expand Down
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@
"@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
"@eslint/js": "9.39.1",
"@flint.fyi/plugin-browser": "workspace:^",
"@flint.fyi/plugin-cspell": "workspace:^",
"@flint.fyi/plugin-flint": "workspace:^",
"@flint.fyi/plugin-jsx": "workspace:^",
"@flint.fyi/plugin-node": "workspace:^",
"@flint.fyi/plugin-spelling": "workspace:^",
"@types/eslint-plugin-markdown": "2.0.2",
"@types/mdast": "4.0.4",
"@types/node": "24.10.0",
Expand Down Expand Up @@ -78,5 +79,12 @@
"publishConfig": {
"access": "public",
"provenance": true
},
"pnpm": {
"overrides": {
"read-package-up": "12.0.0",
"read-pkg": "10.0.0",
"unicorn-magic": "0.4.0"
}
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤔 I added these to fix some funky dynamic imports that were tripping up Astro's Vite process. I'll want to figure it out and fix things..

}
}
Loading