mirror of
https://github.com/idanoo/autobrr
synced 2025-07-26 02:09:13 +00:00
chore(web): add ignore pattern to eslint for the unused-vars rule (#965)
* allow eslint ununsed vars and params if starts with _ * comment rests of unused code on Irc.tsx * fix some eslint warn about unused code
This commit is contained in:
parent
32ffc875b0
commit
a5e05284d0
4 changed files with 57 additions and 44 deletions
|
@ -132,7 +132,7 @@ function FeedSettings() {
|
|||
Last run <span className="sort-indicator">{sortedFeeds.getSortIndicator("last_run")}</span>
|
||||
</div>
|
||||
</li>
|
||||
{sortedFeeds.items.map((feed, idx) => (
|
||||
{sortedFeeds.items.map((feed) => (
|
||||
<ListItem key={feed.id} feed={feed}/>
|
||||
))}
|
||||
</ol>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue