We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07ba019 commit 9b38116Copy full SHA for 9b38116
frontend/eslint.config.js
@@ -22,8 +22,12 @@ export default tseslint.config([
22
rules: {
23
'@typescript-eslint/no-unused-vars': [
24
'error',
25
- { argsIgnorePattern: '^_' }
26
- ]
+ {
+ argsIgnorePattern: '^_',
27
+ varsIgnorePattern: '^_'
28
+ }
29
+ ],
30
+ 'no-console': ['error', { allow: ['error', 'warn'] }]
31
},
32
33
])
frontend/src/hooks/useEvents.ts
@@ -99,7 +99,6 @@ export function useEvents(view: "grid" | "calendar") {
99
100
return rawEvents
101
.filter((event) => {
102
- console.log(event);
103
const eventDateStr = event.date; // e.g., "2025-09-24"
104
105
// If event is on a future date, include it
0 commit comments