mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
18 lines
550 B
C++
18 lines
550 B
C++
#pragma once
|
|
|
|
#include "swift/logging/SwiftLogging.h"
|
|
|
|
namespace codeql {
|
|
constexpr const std::string_view programName = "autobuilder";
|
|
}
|
|
|
|
namespace codeql_diagnostics {
|
|
constexpr codeql::SwiftDiagnosticsSource build_command_failed{
|
|
"build_command_failed",
|
|
"Detected build command failed",
|
|
"Set up a manual build command",
|
|
"https://docs.github.com/en/enterprise-server/code-security/code-scanning/"
|
|
"automatically-scanning-your-code-for-vulnerabilities-and-errors/customizing-code-scanning",
|
|
};
|
|
} // namespace codeql_diagnostics
|