Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"mcpServers": {}
}
3 changes: 3 additions & 0 deletions src/renderer/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
import { AppProviders } from './providers/AppProviders'

export default function App(): JSX.Element {
const unused_variable = 42

Check failure on line 7 in src/renderer/src/App.tsx

View workflow job for this annotation

GitHub Actions / test

'unused_variable' is assigned a value but never used
let mutable_but_never_reassigned = 'test'

Check failure on line 8 in src/renderer/src/App.tsx

View workflow job for this annotation

GitHub Actions / test

'mutable_but_never_reassigned' is never reassigned. Use 'const' instead
console.log(mutable_but_never_reassigned)
return (
<AppProviders>
<HashRouter>
Expand Down
6 changes: 5 additions & 1 deletion src/renderer/src/constants/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ export const CSS_CLASSES = {
shadow: 'shadow-sm',

// Focus states
focused: 'focused'
focused: 'focused',

// Search
searchInput: 'search-input',
searchResults: 'search-results'
} as const

export const FOCUS_CLASSES = {
Expand Down
Loading