Skip to content

Commit

Permalink
Merge pull request #483 from nasustim/renovate/major-typescript-eslin…
Browse files Browse the repository at this point in the history
…t-monorepo

chore(deps): update typescript-eslint monorepo to v6 (major)
  • Loading branch information
nasustim authored Oct 15, 2023
2 parents 44db7ae + c39d37a commit a50f261
Show file tree
Hide file tree
Showing 4 changed files with 122 additions and 52 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"@storybook/nextjs": "7.4.6",
"@storybook/react": "7.4.6",
"@storybook/testing-library": "0.2.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"eslint": "8.51.0",
"eslint-config-next": "13.5.4",
"eslint-plugin-react": "7.33.2",
Expand Down
168 changes: 118 additions & 50 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/app/works/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ type Props = {
slug: string
}

// eslint-disable-next-line @typescript-eslint/no-unused-vars
const Page = ({ params }: { params: Props }) => {
return (
<Layout>
Expand Down
1 change: 1 addition & 0 deletions src/components/atoms/ProfileImage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import styles from './index.module.scss'

type Props = JSX.IntrinsicElements['img']

// eslint-disable-next-line jsx-a11y/alt-text, @next/next/no-img-element
const ProfileImage: FC<Props> = (props) => <img {...props} className={styles.container} />

export default ProfileImage

0 comments on commit a50f261

Please sign in to comment.