mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
We currently use a script to keep certain duplicate QL files in sync across the repo. For historical reasons, this script has lived in the private repo alongside the rest of CodeQL, even though it's only used for files in the public `ql` repo. This PR moves the script into the public `ql` repo. It is still invoked by Jenkins scripts that live in the private repo during CI, but it can also be invoked directly without having a checkout of the private repo. This is useful for anyone who is modifying the dataflow or IR libraries with only a QL checkout.
24 lines
491 B
Plaintext
24 lines
491 B
Plaintext
# editor and OS artifacts
|
|
*~
|
|
.DS_STORE
|
|
*.swp
|
|
|
|
# query compilation caches
|
|
.cache
|
|
|
|
# qltest projects and artifacts
|
|
*/ql/test/**/*.testproj
|
|
*/ql/test/**/*.actual
|
|
|
|
# Visual studio temporaries, except a file used by QL4VS
|
|
.vs/*
|
|
!.vs/VSWorkspaceSettings.json
|
|
|
|
# Byte-compiled python files
|
|
*.pyc
|
|
|
|
# It's useful (though not required) to be able to unpack codeql in the ql checkout itself
|
|
/codeql/
|
|
.vscode/settings.json
|
|
csharp/extractor/Semmle.Extraction.CSharp.Driver/Properties/launchSettings.json
|