Skip to content

juliussneezer04/eslint-plugin-safe-webapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ESLint Plug-in for Secure Web Applications

npm version

  • This is a plug-in for ESLint that provides custom rules used by me to safeguard against basic web application vulnerabilities.

Setup

  1. Setup the plug-in by running the setup command.

    yarn setup;
  2. Update the following in your .eslintrc.json file.

    "plugins": ["secure-webapp"],
    "rules": {
     "secure-webapp/no-json-parse": 1,
    },