Compare commits

..

No commits in common. "ec367621f516f3cb15730d8d94048a8251bf940d" and "800f4a8fdab9ee86d07fda36beaab7db3d272afa" have entirely different histories.

4 changed files with 992 additions and 5595 deletions

View file

@ -1,64 +0,0 @@
// eslint.config.js
import js from "@eslint/js";
import tseslint from "@typescript-eslint/eslint-plugin";
import tsParser from "@typescript-eslint/parser";
import astroPlugin from "eslint-plugin-astro";
import astroParser from "astro-eslint-parser";
import reactPlugin from "eslint-plugin-react";
import reactHooks from "eslint-plugin-react-hooks";
export default [
js.configs.recommended,
// TypeScript
{
files: ["**/*.ts", "**/*.tsx"],
languageOptions: {
parser: tsParser,
parserOptions: {
project: "./tsconfig.json",
},
},
plugins: {
"@typescript-eslint": tseslint,
},
rules: {
...tseslint.configs.recommended.rules,
},
},
// Astro
{
files: ["**/*.astro"],
languageOptions: {
parser: astroParser,
parserOptions: {
parser: tsParser,
},
},
plugins: {
astro: astroPlugin,
},
rules: {
...astroPlugin.configs.recommended.rules,
},
},
// JSX / Preact
{
files: ["**/*.jsx", "**/*.tsx"],
plugins: {
react: reactPlugin,
"react-hooks": reactHooks,
},
rules: {
...reactPlugin.configs.recommended.rules,
...reactHooks.configs.recommended.rules,
},
settings: {
react: {
version: "detect",
},
},
},
];

6494
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -9,22 +9,12 @@
"astro": "astro" "astro": "astro"
}, },
"dependencies": { "dependencies": {
"@astrojs/preact": "^4.1.3", "@astrojs/preact": "^4.0.10",
"@astrojs/rss": "^4.0.14", "@astrojs/rss": "^4.0.11",
"astro": "^5.7.5", "astro": "^5.7.5",
"preact": "^10.28.0" "preact": "^10.25.4"
}, },
"devDependencies": { "devDependencies": {
"@astrojs/language-server": "^2.16.2", "typescript": "^5.7.3"
"@astrojs/ts-plugin": "^1.10.6",
"typescript": "^5.9.3",
"typescript-language-server": "^5.1.3",
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-astro": "^1.5.0",
"astro-eslint-parser": "^1.2.2",
"vscode-langservers-extracted": "^4.10.0"
} }
} }

View file

@ -12,8 +12,5 @@
"jsxImportSource": "preact", "jsxImportSource": "preact",
"strictNullChecks": true, "strictNullChecks": true,
"allowJs": true "allowJs": true
}, }
"plugins": [
{ "name": "@astrojs/ts-plugin" }
]
} }