deploy linting and first unit test maybe

This commit is contained in:
2025-11-11 20:55:41 -08:00
parent 164c077682
commit 23ba726da6
3 changed files with 37 additions and 18 deletions

35
eslint.config.js Normal file
View File

@@ -0,0 +1,35 @@
import globals from "globals";
import tseslint from "typescript-eslint";
import pluginReact from "eslint-plugin-react";
import pluginReactHooks from "eslint-plugin-react-hooks";
import pluginReactRefresh from "eslint-plugin-react-refresh";
export default tseslint.config(
{
// Global ignores
ignores: ["dist", ".gitea", "supabase", "node_modules", "*.cjs"],
},
{
// All files
files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"],
plugins: {
react: pluginReact,
"react-hooks": pluginReactHooks,
"react-refresh": pluginReactRefresh,
},
languageOptions: {
globals: {
...globals.browser,
...globals.es2020,
},
},
rules: {
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true },
],
},
},
// TypeScript files
...tseslint.configs.recommended,
);