Skip to content

Commit 5de0081

Browse files
committed
fix: Fix Codacy Errors
Signed-off-by: aceppaluni <aceppaluni@gmail.com>
1 parent 22da94a commit 5de0081

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

eslint.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ const eslintConfig = defineConfig([
1616
"node_modules/**",
1717
]),
1818
{
19-
rules: {
19+
/*rules: {
2020
"@typescript-eslint/no-unused-vars": [
2121
"warn",
2222
{ argsIgnorePattern: "^_" },
2323
],
24-
},
24+
},*/
2525
},
2626
]);
2727

src/app/api/issues/route.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ interface GitHubSearchResponse {
1212
error?: string;
1313
}
1414

15-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1615
type SearchIssuesFn = (_query: string) => Promise<GitHubSearchResponse>;
1716
const searchIssues = rawSearchIssues as SearchIssuesFn;
1817

src/app/issues/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default function GoodFirstIssues() {
128128
setSdk(e.target.value);
129129
}}
130130
className="p-2 rounded border">
131-
<option value="">All Repo's</option>
131+
<option value="">All Repo&apos;s</option>
132132
<option value="python">Python</option>
133133
<option value="javascript">JavaScript</option>
134134
<option value="cpp">C++</option>

0 commit comments

Comments
 (0)