Permalink
Cannot retrieve contributors at this time
61 lines (45 sloc)
999 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql/.gitignore
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # editor and OS artifacts | |
| *~ | |
| .DS_STORE | |
| *.swp | |
| # query compilation caches | |
| .cache | |
| # qltest projects and artifacts | |
| */ql/test/**/*.testproj | |
| */ql/test/**/*.actual | |
| */ql/test/**/go.sum | |
| # Visual studio temporaries, except a file used by QL4VS | |
| .vs/* | |
| !.vs/VSWorkspaceSettings.json | |
| # Byte-compiled python files | |
| *.pyc | |
| # python virtual environment folder | |
| .venv/ | |
| # binary files created by pytest-cov | |
| .coverage | |
| # It's useful (though not required) to be able to unpack codeql in the ql checkout itself | |
| /codeql/ | |
| # Avoid committing cached package components | |
| .codeql | |
| # Compiled class file | |
| *.class | |
| # links created by bazel | |
| /bazel-* | |
| # local bazel options | |
| /local.bazelrc | |
| # CLion project files | |
| /.clwb | |
| # Go build artifacts | |
| go/build/* | |
| # Go binaries | |
| go/tools/bin | |
| go/tools/linux64 | |
| go/tools/osx64 | |
| go/tools/win64 | |
| go/tools/tokenizer.jar | |
| go/main | |
| # node_modules folders except in the JS test suite | |
| node_modules/ | |
| !/javascript/ql/test/**/node_modules/ | |
| # Temporary folders for working with generated models | |
| .model-temp |

