Skip to content

Commit

Permalink
chore(repo): update eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocroh committed Jun 2, 2024
1 parent 2190654 commit 5ae80b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
7 changes: 1 addition & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,9 @@
"root": true,
"extends": ["next/core-web-vitals", "turbo", "prettier"],
"rules": {
"@next/next/no-html-link-for-pages": "off",
"tailwindcss/no-custom-classname": "off"
"@next/next/no-html-link-for-pages": "off"
},
"settings": {
"tailwindcss": {
"callees": ["cn", "cva"],
"config": "tailwind.config.cjs"
},
"next": {
"rootDir": ["apps/*/"]
}
Expand Down
2 changes: 1 addition & 1 deletion apps/web/components/video-player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const VideoPlayer = forwardRef<
console.error(`Error: ${error.name}`)
})
}
}, [activeOutputDevice])
}, [activeOutputDevice, remote])

return (
<>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && lint-staged"
"lint": "next lint; lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx, jsx}": [
Expand Down

0 comments on commit 5ae80b0

Please sign in to comment.