Skip to content

Instantly share code, notes, and snippets.

@nestoru
Created May 28, 2018 19:17
Show Gist options
  • Save nestoru/9b6394ecdb44903ed7654e689a681425 to your computer and use it in GitHub Desktop.
Save nestoru/9b6394ecdb44903ed7654e689a681425 to your computer and use it in GitHub Desktop.
minimal node security eslintrc
{
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"plugins": [
"security"
],
"extends": [
"plugin:security/recommended"
],
"rules": {
"security/detect-child-process": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment