-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
74 lines (62 loc) · 1.53 KB
/
.gitignore
File metadata and controls
74 lines (62 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Files and dirs to ignore
.DS_Store
.cache/
.env
# Project-local temporary data (never use OS tmpdir)
.tmp/
.env.*
!.env.example*
.idea/
.npm
.parcel-cache/
coverage/
dist/
node_modules/
tsconfig.tsbuildinfo
.ql-mcp-tracking/
codeql-development-mcp-server.code-workspace
## Globs to ignore
*.log
# Allow *.log files committed as test fixtures
!extensions/vscode/test/fixtures/**/*.log
*.pid
*.swp
*.swo
*.tgz
*.tar.gz
*.vsix
*~
.vscode/mcp.json
.vscode/settings.json
# Ignore state tracking for local, integration testing
.ql-mcp-tracking/*
# But do not ignore the config file
!.ql-mcp-tracking/config.json
# CodeQL pack install generates .codeql cache/dependency directories
.codeql/
# CodeQL pack compile generates compiled query plan files
*.qlx
# The 'codeql test run` command generates `<QueryBaseName>.actual` files
*.actual
# The 'codeql test run` command generates `<QueryBaseName>.testproj` test database directories
*.testproj
# Prevent accidentally committing integration test output files in root directory
# These should only be in client/integration-tests/primitives/tools/*/after/ directories
/evaluator-log.json
/client/query-results/
/client/query-results.bqrs
/client/query-results.sarif
/query-results/
/query-results.bqrs
/query-results.sarif
/*.bqrs
/evaluator-*.json
/stderr.txt
/stdout.txt
# Ignore test scaffolding directory created by query-scaffolding tests
.test-query-scaffolding
# Scratch directories
scratch/
**/scratch/
# Ignore 'workflows/**' created as part of testing the workshop development agent skill
/workshops/