Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
53974e8
fix: accessibility audit - focus management, keyboard nav, ARIA, and …
Timrossid Jun 17, 2026
465d512
Merge remote-tracking branch 'stellar/main' into a11y/accessibility-a…
Timrossid Jun 17, 2026
d586129
feat(security): device management with list, key status, session revo…
Timrossid Jun 17, 2026
6e23069
feat(security): comprehensive device management with recovery methods…
Timrossid Jun 17, 2026
1b96044
chore: update bun.lock to include @axe-core/playwright and eslint-plu…
Timrossid Jun 17, 2026
1894f7a
style: fix prettier formatting across device management and a11y files
Timrossid Jun 17, 2026
b2e97c5
fix: resolve all 14 eslint/jsx-a11y errors
Timrossid Jun 17, 2026
0cc24e0
fix: resolve TS errors in EmailList (ref type) and ShortcutOverlay (m…
Timrossid Jun 18, 2026
ed25ce3
chore: add .gitattributes with LF enforcement and prettier endOfLine …
Timrossid Jun 18, 2026
c4415bb
ci: trigger re-run
Timrossid Jun 18, 2026
484e0c2
Merge branch 'main' into feature/device-management
Timrossid Jun 18, 2026
caedd74
Merge branch 'main' into feature/device-management
Timrossid Jun 18, 2026
c2f8bfb
ci: trigger re-run
Timrossid Jun 18, 2026
a42a98d
fix(a11y): resolve jsx-a11y errors in files from main merge
Timrossid Jun 18, 2026
77093c4
Merge branch 'main' into feature/device-management
Timrossid Jun 18, 2026
cd0e07f
fix: resolve CI failures and missing type definitions in device manag…
Jun 19, 2026
59b85d0
Resolve merge conflicts and fix client checks
Timrossid Jun 20, 2026
9100306
Merge branch 'main' into feature/device-management
Timrossid Jun 22, 2026
d1f024e
Merge main into feature/device-management
Timrossid Jun 29, 2026
bf24ce8
Merge remote feature/device-management
Timrossid Jun 29, 2026
70ac5d9
Merge branch 'main' into feature/device-management
Timrossid Jun 30, 2026
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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
*.woff2 binary
*.eot binary
*.ttf binary
*.otf binary
*.wasm binary
*.zip binary
*.tar binary
Expand Down
Binary file modified bun.lockb
100755 → 100644
Binary file not shown.
4 changes: 4 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import js from "@eslint/js";
import eslintPluginPrettier from "eslint-plugin-prettier/recommended";
import globals from "globals";
import jsxA11y from "eslint-plugin-jsx-a11y";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import tseslint from "typescript-eslint";
Expand All @@ -17,13 +18,16 @@ export default tseslint.config(
plugins: {
"react-hooks": reactHooks,
"react-refresh": reactRefresh,
"jsx-a11y": jsxA11y,
},
rules: {
...reactHooks.configs.recommended.rules,
...jsxA11y.configs.recommended.rules,
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/ban-ts-comment": "warn",
"jsx-a11y/no-autofocus": "off",
},
},
eslintPluginPrettier,
Expand Down
Loading