Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5585d00
Simplify BreadcrumbNav using Svelte UX Breadcrumb
techniq Mar 18, 2025
8e25ba9
Replace EntityTable with Svelte UX Table
techniq Mar 18, 2025
738dbc1
Add PropertyList component to simplify common usage
techniq Mar 18, 2025
5d80954
Replace shadcn/bits-ui Tabs with Svelte UX Table. Provides better vi…
techniq Mar 18, 2025
5758914
Replace overview Dialog with Svelte UX Drawer
techniq Mar 18, 2025
8c6803d
Replace drift drilldown Dialog with Svelte UX Drawer
techniq Mar 19, 2025
490affe
Simplify commnd+k binding
techniq Mar 19, 2025
f385315
Replace quick search with Svelte UX Drawer/SelectField. Improve design
techniq Mar 19, 2025
21fb625
Replace Input with Svelte UX TextField
techniq Mar 19, 2025
61b0da8
Remove unneccessary Avatar usage (at this time)
techniq Mar 19, 2025
0a0d180
Remove unused shadcv-svelte components
techniq Mar 19, 2025
f28c01a
Remove unused `AGGREGATION_PROPERTIES` (make lint happy)
techniq Mar 19, 2025
f12158d
fix(PropertyList): Remove `any` usage (make lint happy)
techniq Mar 19, 2025
3ba6b23
fix(PropertyList): Fix svelte-check errors
techniq Mar 19, 2025
1764d43
refactor(ExpandableCell): Replace shadcn DropdownMenu with Svelte UX …
techniq Mar 24, 2025
1cf21a3
Replace mode-watcher with Svelte UX ThemeSelect / settings
techniq Mar 24, 2025
48f71c9
Remove remaining shadcn DropdownMenu usage with Svelte UX Menu
techniq Mar 24, 2025
ce0a3c2
fix(ObservabilityNavTabs): Improve icon alignment
techniq Mar 24, 2025
2669683
Replace shadcn Badge component with simplified markup
techniq Mar 24, 2025
749ecfb
Replace shadcn Collapsible component with Svelte UX Collapse
techniq Mar 25, 2025
5f638da
refactdor(StatusCell): Replace shadcn Popover component with Svelte U…
techniq Mar 25, 2025
a55ae29
Remove unused shadcn Calendar components
techniq Mar 25, 2025
6837c38
Replace shadcn Tooltip component with Svelte UX Tooltip
techniq Mar 25, 2025
018493b
Fix `svelte-check` and `eslint` CI failures
techniq Apr 1, 2025
166e867
Update Svelte UX to 2.0.0-next.4 (DateRange improvements)
techniq Apr 1, 2025
64c8d15
Etsy demo (#552)
sean-zlai Apr 23, 2025
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
11 changes: 8 additions & 3 deletions frontend/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,28 @@ export default [
...globals.browser,
...globals.node
}
},
rules: {
'@typescript-eslint/no-unused-vars': 'warn',
'@typescript-eslint/no-explicit-any': 'warn'
}
},
{
files: ['**/*.svelte'],
files: ['**/*.svelte', '**/*.svelte.ts'],
languageOptions: {
parserOptions: {
parser: ts.parser
}
},
rules: {
'@typescript-eslint/no-unused-vars': [
'error',
'warn',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^\\$\\$(Props|Events|Slots|Generic)$'
}
]
],
'svelte/require-each-key': 'off'
}
},
{
Expand Down
Loading