We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d47f89c commit c7ff8eeCopy full SHA for c7ff8ee
.github/codeql/codeql_config.yml
@@ -20,16 +20,17 @@ name: codeql_configuration
20
21
# Define paths for which code scanning should be performed:
22
paths:
23
- - 'lib/**/bin/**'
24
- - 'lib/**/docs/types/**'
25
- - 'lib/**/include/**'
26
- - 'lib/**/lib/**'
27
- - 'lib/**/src/**'
+ - 'lib/node_modules/**/bin'
+ - 'lib/node_modules/**/docs/types'
+ - 'lib/node_modules/**/include'
+ - 'lib/node_modules/**/lib'
+ - 'lib/node_modules/**/src'
28
29
- - 'lib/**/*.gyp'
30
- - 'lib/**/*.gypi'
+ - 'lib/node_modules/**/*.gyp'
+ - 'lib/node_modules/**/*.gypi'
31
- 'package.json'
32
33
# Define paths for which code scanning should *not* be performed:
34
paths-ignore:
35
- - 'lib/**/_tools/**'
+ - 'node_modules'
36
+ - 'lib/node_modules/**/_tools'
0 commit comments