diff --git a/.eslintrc.json b/.eslintrc.json index 6b10a5b..33f6e02 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -2,5 +2,9 @@ "extends": [ "next/core-web-vitals", "next/typescript" - ] + ], + "rules": { + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off" + } } diff --git a/src/components/mdx.tsx b/src/components/mdx.tsx index 66be54d..adedede 100644 --- a/src/components/mdx.tsx +++ b/src/components/mdx.tsx @@ -65,7 +65,7 @@ const components = { * @param props the props for the MDX * @return the custom mdx */ -export const CustomMDX = (props): ReactElement => ( +export const CustomMDX = (props: any): ReactElement => (