codeql/go
Sid Shankar ae3e25786f Remove LGTM references from README.md + cleanup 2022-12-19 20:51:01 +00:00
..
build
codeql-tools Go: Remove the legacy tracer configuration files. 2022-09-09 11:13:01 +02:00
docs/language/learn-ql/go
downgrades Remove @errorexpr from the dbscheme (use @badexpr) 2022-12-14 10:46:19 +00:00
external-packs/codeql/suite-helpers/0.0.2
extractor Remove @errorexpr from the dbscheme (use @badexpr) 2022-12-14 10:46:19 +00:00
extractor-smoke-test
old-change-notes spelling: recognition 2022-10-20 08:21:02 -04:00
ql Merge pull request #11719 from aibaars/alert-suppression-shared 2022-12-19 16:04:44 +01:00
scripts
templates/project
tools
vendor Upgrade Go extractor to latest golang and x-packages 2022-08-18 16:22:04 +01:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md Remove LGTM reference from CONTRIBUTING.md 2022-12-19 20:12:23 +00:00
LICENSE
Makefile Include downgrade scripts in extractor pack 2022-12-14 10:46:20 +00:00
README.md Remove LGTM references from README.md + cleanup 2022-12-19 20:51:01 +00:00
SECURITY.md
alert_weighting.properties
codeql-extractor.yml
go.mod Upgrade Go extractor to latest golang and x-packages 2022-08-18 16:22:04 +01:00
go.sum Upgrade Go extractor to latest golang and x-packages 2022-08-18 16:22:04 +01:00

README.md

Go analysis support for CodeQL

This sub-folder contains the extractor, CodeQL libraries, and queries that power Go support for CodeQL.

It contains two major components:

  • an extractor, itself written in Go, that parses Go source code and converts it into a database that can be queried using CodeQL.
  • static analysis libraries and queries written in CodeQL that can be used to analyze such a database to find coding mistakes or security vulnerabilities.

Installation

Clone this repository.

Run scripts/install-deps.sh. This will ensure that the necessary external CodeQL packs are downloaded to your machine. You will need to re-run this script whenever you pull new commits from the repo.

If you want to use the CodeQL extension for Visual Studio Code, import this repository into your VS Code workspace.

Usage

To analyze a Go codebase, either use the CodeQL command-line interface to create a database yourself, or download a pre-built database from GitHub.com. You can then run any of the queries contained in this repository either on the command line or using the VS Code extension.

Contributions

Contributions are welcome! Please see our contribution guidelines and our code of conduct for details on how to participate in our community.

Licensing

The code in this repository is licensed under the MIT license.

Resources