Skip to content

Commit

Permalink
fix missing commands in denylist by allowing all (#4922)
Browse files Browse the repository at this point in the history
  • Loading branch information
rochdev committed Nov 21, 2024
1 parent 613f06c commit 7dd790f
Showing 1 changed file with 9 additions and 39 deletions.
48 changes: 9 additions & 39 deletions requirements.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,77 +46,47 @@
"id": "npm",
"description": "Ignore the npm CLI",
"os": null,
"cmds": [
"**/node",
"**/nodejs",
"**/ts-node",
"**/ts-node-*"
],
"cmds": [],
"args": [{ "args": ["*/npm-cli.js"], "position": 1}],
"envars": null
},
{
"id": "npm_symlink",
"description": "Ignore the npm CLI",
"description": "Ignore the npm CLI (symlink)",
"os": null,
"cmds": [
"**/node",
"**/nodejs",
"**/ts-node",
"**/ts-node-*"
],
"cmds": [],
"args": [{ "args": ["*/npm"], "position": 1}],
"envars": null
},
{
"id": "yarn",
"description": "Ignore the yarn CLI",
"os": null,
"cmds": [
"**/node",
"**/nodejs",
"**/ts-node",
"**/ts-node-*"
],
"cmds": [],
"args": [{ "args": ["*/yarn.js"], "position": 1}],
"envars": null
},
{
"id": "yarn_symlink",
"description": "Ignore the yarn CLI",
"description": "Ignore the yarn CLI (symlink)",
"os": null,
"cmds": [
"**/node",
"**/nodejs",
"**/ts-node",
"**/ts-node-*"
],
"cmds": [],
"args": [{ "args": ["*/yarn"], "position": 1}],
"envars": null
},
{
"id": "pnpm",
"description": "Ignore the pnpm CLI",
"os": null,
"cmds": [
"**/node",
"**/nodejs",
"**/ts-node",
"**/ts-node-*"
],
"cmds": [],
"args": [{ "args": ["*/pnpm.cjs"], "position": 1}],
"envars": null
},
{
"id": "pnpm_symlink",
"description": "Ignore the pnpm CLI",
"description": "Ignore the pnpm CLI (symlink)",
"os": null,
"cmds": [
"**/node",
"**/nodejs",
"**/ts-node",
"**/ts-node-*"
],
"cmds": [],
"args": [{ "args": ["*/pnpm"], "position": 1}],
"envars": null
}
Expand Down

0 comments on commit 7dd790f

Please sign in to comment.