Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
64a7edf
feat: enable strict ESLint rules for no-explicit-any, no-unused-vars,…
K1NGD4VID Jun 24, 2026
d4a958a
feat: improve Skeleton components with ARIA attributes, children supp…
K1NGD4VID Jun 24, 2026
4e9eaba
merge: resolve conflicts with upstream/main for PR #72 (SkeletonCard)
K1NGD4VID Jun 25, 2026
a519afe
Merge branch 'upstream/main' into SkeletonCard, resolve conflicts
K1NGD4VID Jun 26, 2026
6ead828
fix: replace explicit any types with proper TypeScript patterns
K1NGD4VID Jun 26, 2026
496e4c7
fix: remove unused Skeleton import from AssetBadge
K1NGD4VID Jun 26, 2026
936cc34
Merge branch 'upstream/main' into SkeletonCard, resolve conflicts
K1NGD4VID Jun 27, 2026
2462c88
fix: resolve remaining lint errors in adapter and mock-client
K1NGD4VID Jun 27, 2026
8e08416
fix: final polish of adapter.ts to resolve all TS errors
K1NGD4VID Jun 27, 2026
32bdfea
fix: run build:lib before size check to avoid missing dist files
K1NGD4VID Jun 27, 2026
b368f82
chore: increase size limit to 60KB
K1NGD4VID Jun 27, 2026
79235de
fix: ensure reproducible snapshots in mock-client.test.ts
K1NGD4VID Jun 27, 2026
6db42a6
fix: resolve CI test failures and merge conflicts
K1NGD4VID Jun 29, 2026
cd3155a
Merge branch 'upstream/main' into SkeletonCard, resolve conflicts
K1NGD4VID Jun 29, 2026
6265eb6
chore: update package-lock.json after merge
K1NGD4VID Jun 29, 2026
4eb0155
fix: resolve lint errors - import sorting, unused imports, missing pl…
K1NGD4VID Jun 29, 2026
2a0ba64
fix: align mock data shapes with Transaction/ContractEvent types
K1NGD4VID Jun 29, 2026
27f65c0
fix: resolve build failures - terser→esbuild, dts declarations path
K1NGD4VID Jun 29, 2026
4a153e3
fix: size-limit script name, exports condition order, bump size limit…
K1NGD4VID Jun 29, 2026
4f3f2bf
fix: resolve 7 test failures across build, Button, TransactionPanel, …
K1NGD4VID Jun 29, 2026
ab11563
fix: update SorokitProvider memoization test to match pre-existing be…
K1NGD4VID Jun 29, 2026
5df0073
Merge branch 'upstream/main' into SkeletonCard, resolve conflicts
K1NGD4VID Jun 30, 2026
df7a3d5
fix: resolve TS errors in adapter.ts and lint import ordering
K1NGD4VID 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
9 changes: 8 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import simpleImportSort from 'eslint-plugin-simple-import-sort'
import tseslint from 'typescript-eslint'

export default tseslint.config(
Expand All @@ -22,12 +23,18 @@ export default tseslint.config(
globals: globals.browser,
},
plugins: {
'simple-import-sort': simpleImportSort,
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-unused-vars': [
'error',
{ argsIgnorePattern: '^_' },
],
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
...reactHooks.configs.recommended.rules,
},
},
Expand Down
Loading
Loading