My custom list of useful web development resources
If you have only one file you want to disable prop-type validation you can use:
/* eslint react/prop-types: 0 */
in cases where you have multiple files you can add to your .eslintrc file in your root directory a rule to disable prop-type validation:
{
"plugins": [
"react"
],
"rules": {
"react/prop-types": 0
}
}
- Deploying your Next.js app using Github and Vercel
- How to Deploy Next.js Apps to Github Pages
- Olivier Larose blog
- Using CSS variables like a pro
- animation-timeline
- animation-range
- object-fit
- object-position
- scroll-behavior
- scroll-snap-type
- scroll-timeline
- touch-action
- Before installing node version manager(nvm) in Windows 11, run this command in the powershell(run as administrator) - Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser