-
Notifications
You must be signed in to change notification settings - Fork 0
Enable type-aware ESLint rules and apply React/a11y recommended configs #101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -384,7 +384,7 @@ export class Repository { | |
| r.metadata = {}; | ||
| } | ||
| } | ||
| return r as T; | ||
| return r; | ||
| } | ||
| } | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,7 +37,7 @@ const ExportPanel: React.FC = () => { | |
| } | ||
| }; | ||
|
|
||
| fetchStats(); | ||
| void fetchStats(); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
|
||
| jobCoordinator.registerHandler('prepare-export', async (payload) => { | ||
| const { format } = payload as { format: string }; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,7 +49,7 @@ const NoResultsState: React.FC<{ query: string; onClear: () => void }> = ({ quer | |
| <Filter size={32} /> | ||
| </div> | ||
| <h3>No local matches</h3> | ||
| <p>We couldn't find anything matching "{query}" in your current library.</p> | ||
| <p>We couldn't find anything matching "{query}" in your current library.</p> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| <div className="no-results-actions"> | ||
| <button className="btn-secondary" onClick={onClear}> | ||
| Clear search | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found non-compliant syntax. Confirm that there are no syntax errors before committing your code to a version control system.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jules address feedback