Skip to content

Commit 4c5c5b6

Browse files
committed
Undo linter changes
1 parent 7a0edf1 commit 4c5c5b6

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

.eslintrc.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
22
"root": true,
3-
"extends": ["@raycast"],
4-
"rules": {
5-
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
6-
}
3+
"extends": ["@raycast"]
74
}

src/hooks/useGlobalSearch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { apiLimit } from "../utils";
77

88
export function useGlobalSearch(query: string, types: string[], config?: { execute?: boolean }) {
99
const shouldExecute = config?.execute !== false;
10-
1110
const { data, error, isLoading, mutate, pagination } = useCachedPromise(
1211
(query: string, types: string[], shouldExecute: boolean) => async (options: { page: number }) => {
1312
if (!shouldExecute) {

0 commit comments

Comments
 (0)