mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
274 B
Plaintext
15 lines
274 B
Plaintext
/**
|
|
* @id js/examples/toomanyparams
|
|
* @name Functions with many parameters
|
|
* @description Finds functions with more than ten parameters
|
|
* @tags function
|
|
* parameter
|
|
* argument
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from Function f
|
|
where f.getNumParameter() > 10
|
|
select f
|