Skip to content

codegorrilla/webdev-useful-resources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 

Repository files navigation

Webdev-useful-resources

My custom list of useful web development resources

.md (mark down) guide

VS Code guide

JS resources

React resources

The way to disable ”react/prop-types rule”

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
  }
}

R3F resources

DREI resources

Next.js resources

CSS resources

Node/ NPM/ NVM

  • Before installing node version manager(nvm) in Windows 11, run this command in the powershell(run as administrator) - Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser

About

My custom list of useful React.js resources

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published