Spaces:
Runtime error
Runtime error
Remove ESLint. We have Biome.
Browse files
lynxkite-app/web/eslint.config.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
| 1 |
-
import js from "@eslint/js";
|
| 2 |
-
import reactHooks from "eslint-plugin-react-hooks";
|
| 3 |
-
import reactRefresh from "eslint-plugin-react-refresh";
|
| 4 |
-
import globals from "globals";
|
| 5 |
-
import tseslint from "typescript-eslint";
|
| 6 |
-
|
| 7 |
-
export default tseslint.config(
|
| 8 |
-
{ ignores: ["dist"] },
|
| 9 |
-
{
|
| 10 |
-
extends: [js.configs.recommended, ...tseslint.configs.recommended],
|
| 11 |
-
files: ["**/*.{ts,tsx}"],
|
| 12 |
-
languageOptions: {
|
| 13 |
-
ecmaVersion: 2020,
|
| 14 |
-
globals: globals.browser,
|
| 15 |
-
},
|
| 16 |
-
plugins: {
|
| 17 |
-
"react-hooks": reactHooks,
|
| 18 |
-
"react-refresh": reactRefresh,
|
| 19 |
-
},
|
| 20 |
-
rules: {
|
| 21 |
-
...reactHooks.configs.recommended.rules,
|
| 22 |
-
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
|
| 23 |
-
},
|
| 24 |
-
},
|
| 25 |
-
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lynxkite-app/web/package.json
CHANGED
|
@@ -7,7 +7,6 @@
|
|
| 7 |
"test": "playwright test",
|
| 8 |
"dev": "npx vite",
|
| 9 |
"build": "npx tsc -b && npx vite build",
|
| 10 |
-
"lint": "npx eslint .",
|
| 11 |
"preview": "npx vite preview"
|
| 12 |
},
|
| 13 |
"dependencies": {
|
|
@@ -41,21 +40,16 @@
|
|
| 41 |
"yjs": "^13.6.20"
|
| 42 |
},
|
| 43 |
"devDependencies": {
|
| 44 |
-
"@eslint/js": "^9.15.0",
|
| 45 |
"@playwright/test": "^1.50.1",
|
| 46 |
"@types/node": "^22.13.1",
|
| 47 |
"@types/react": "^18.3.14",
|
| 48 |
"@types/react-dom": "^18.3.2",
|
| 49 |
"@vitejs/plugin-react-swc": "^3.5.0",
|
| 50 |
"autoprefixer": "^10.4.20",
|
| 51 |
-
"eslint": "^9.15.0",
|
| 52 |
-
"eslint-plugin-react-hooks": "^5.0.0",
|
| 53 |
-
"eslint-plugin-react-refresh": "^0.4.14",
|
| 54 |
"globals": "^15.12.0",
|
| 55 |
"postcss": "^8.4.49",
|
| 56 |
"tailwindcss": "^3.4.16",
|
| 57 |
"typescript": "~5.6.2",
|
| 58 |
-
"typescript-eslint": "^8.15.0",
|
| 59 |
"vite": "^6.3.4"
|
| 60 |
},
|
| 61 |
"optionalDependencies": {
|
|
|
|
| 7 |
"test": "playwright test",
|
| 8 |
"dev": "npx vite",
|
| 9 |
"build": "npx tsc -b && npx vite build",
|
|
|
|
| 10 |
"preview": "npx vite preview"
|
| 11 |
},
|
| 12 |
"dependencies": {
|
|
|
|
| 40 |
"yjs": "^13.6.20"
|
| 41 |
},
|
| 42 |
"devDependencies": {
|
|
|
|
| 43 |
"@playwright/test": "^1.50.1",
|
| 44 |
"@types/node": "^22.13.1",
|
| 45 |
"@types/react": "^18.3.14",
|
| 46 |
"@types/react-dom": "^18.3.2",
|
| 47 |
"@vitejs/plugin-react-swc": "^3.5.0",
|
| 48 |
"autoprefixer": "^10.4.20",
|
|
|
|
|
|
|
|
|
|
| 49 |
"globals": "^15.12.0",
|
| 50 |
"postcss": "^8.4.49",
|
| 51 |
"tailwindcss": "^3.4.16",
|
| 52 |
"typescript": "~5.6.2",
|
|
|
|
| 53 |
"vite": "^6.3.4"
|
| 54 |
},
|
| 55 |
"optionalDependencies": {
|