feat: adopt shared TeamHUB cursor theme
Some checks failed
CI / Backend (lint + tests + compose) (push) Has been cancelled
CI / Frontend (lint + type-check + build) (push) Has been cancelled

This commit is contained in:
Vadim Malanov
2026-06-20 19:14:04 +03:00
parent d27dd0ffbb
commit 9b84e38f5a
9 changed files with 45 additions and 1 deletions

View File

@@ -7,6 +7,26 @@ import reactRefresh from "eslint-plugin-react-refresh";
export default [
{ ignores: ["dist", "node_modules", "public", "*.config.js", "*.config.ts"] },
js.configs.recommended,
{
files: ["src/**/*.js"],
languageOptions: {
ecmaVersion: "latest",
sourceType: "module",
globals: {
window: "readonly",
document: "readonly",
console: "readonly",
navigator: "readonly",
localStorage: "readonly",
setTimeout: "readonly",
clearTimeout: "readonly",
crypto: "readonly",
},
},
rules: {
"no-unused-vars": ["warn", { argsIgnorePattern: "^_", varsIgnorePattern: "^_" }],
},
},
{
files: ["src/**/*.{ts,tsx}"],
languageOptions: {