Skip to content

Commit ff723c0

Browse files
feat: update typescript eslint and make changes accordingly (#534)
1 parent 02a3188 commit ff723c0

File tree

8 files changed

+92
-98
lines changed

8 files changed

+92
-98
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
"@types/nodemailer": "6.4.15",
126126
"@types/react": "18.3.3",
127127
"@types/react-dom": "18.3.0",
128-
"@typescript-eslint/eslint-plugin": "7.16.0",
128+
"@typescript-eslint/eslint-plugin": "8.8.0",
129129
"@vitejs/plugin-react": "4.3.1",
130130
"@vitest/ui": "2.0.1",
131131
"cross-env": "7.0.3",

pnpm-lock.yaml

+78-89
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/DayPicker/hooks/useDayPickerPopperManagement.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,12 @@ export const useDayPickerPopperManagement = (
4444
});
4545

4646
const togglePopper = (withFocus = false) => {
47-
isPopperOpen ? closePopper() : openPopper(withFocus);
47+
if (isPopperOpen) {
48+
closePopper();
49+
return;
50+
}
51+
52+
openPopper(withFocus);
4853
};
4954

5055
// Si on click en dehors du calendrier, on le ferme

src/components/Form/FormFieldError.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type FormFieldErrorProps<
2626
children?: (params: { error?: FieldError }) => ReactNode;
2727
} & (
2828
| Required<Pick<ControllerProps<TFieldValues, TName>, 'control' | 'name'>>
29-
// eslint-disable-next-line @typescript-eslint/ban-types
29+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
3030
| {}
3131
);
3232

src/components/Icons/svgr.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* eslint-disable @typescript-eslint/no-var-requires */
1+
/* eslint-disable @typescript-eslint/no-require-imports */
22
const template = require('./svgr.template');
33

44
module.exports = {

src/lib/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { forwardRef } from 'react';
22

33
// https://www.totaltypescript.com/forwardref-with-generic-components
4-
// eslint-disable-next-line @typescript-eslint/ban-types
4+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
55
export function fixedForwardRef<T, P = {}>(
66
render: (props: P, ref: React.Ref<T>) => React.ReactNode
77
): (props: P & React.RefAttributes<T>) => React.ReactNode {

src/server/config/auth.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export async function validateCode({
143143
},
144144
},
145145
});
146-
} catch (e) {
146+
} catch {
147147
ctx.logger.error('Failed to update token attempts');
148148
}
149149

@@ -168,7 +168,7 @@ export async function deleteUsedCode({
168168
await ctx.db.verificationToken.delete({
169169
where: { token },
170170
});
171-
} catch (e) {
171+
} catch {
172172
ctx.logger.warn('Failed to delete the used token');
173173
}
174174
}

src/server/routers/auth.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export const authRouter = createTRPCRouter({
174174
lastLoginAt: new Date(),
175175
},
176176
});
177-
} catch (e) {
177+
} catch {
178178
ctx.logger.warn('Failed to update the user, probably not enabled');
179179
throw new TRPCError({
180180
code: 'UNAUTHORIZED',
@@ -370,7 +370,7 @@ export const authRouter = createTRPCRouter({
370370
accountStatus: 'ENABLED',
371371
},
372372
});
373-
} catch (e) {
373+
} catch {
374374
ctx.logger.warn('Failed to update the user, probably already verified');
375375
throw new TRPCError({
376376
code: 'UNAUTHORIZED',

0 commit comments

Comments
 (0)