├── .cspell.json ├── .eslintrc.json ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── deploy-ALPHA.yml │ ├── deploy-BETA.yml │ ├── deploy-RELEASE.yml │ ├── github-dependents-info.yml │ ├── mega-linter.yml │ └── test.yml ├── .gitignore ├── .jscpd.json ├── .lycheeignore ├── .mega-linter.yml ├── .prettierignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs └── github-dependents-info.md ├── package.json ├── renovate.json ├── src ├── index.ts ├── lib │ ├── languages.ts │ ├── sarif-builder.spec.ts │ ├── sarif-builder.ts │ ├── sarif-result-builder.ts │ ├── sarif-rule-builder.ts │ ├── sarif-run-builder.ts │ └── utils.ts └── types │ └── node-sarif-builder.ts ├── tsconfig.json └── yarn.lock /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.cspell.json -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [nvuillam] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/deploy-ALPHA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.github/workflows/deploy-ALPHA.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-BETA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.github/workflows/deploy-BETA.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-RELEASE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.github/workflows/deploy-RELEASE.yml -------------------------------------------------------------------------------- /.github/workflows/github-dependents-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.github/workflows/github-dependents-info.yml -------------------------------------------------------------------------------- /.github/workflows/mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.github/workflows/mega-linter.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.jscpd.json -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.lycheeignore -------------------------------------------------------------------------------- /.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.mega-linter.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/README.md -------------------------------------------------------------------------------- /docs/github-dependents-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/docs/github-dependents-info.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/src/lib/languages.ts -------------------------------------------------------------------------------- /src/lib/sarif-builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/src/lib/sarif-builder.spec.ts -------------------------------------------------------------------------------- /src/lib/sarif-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/src/lib/sarif-builder.ts -------------------------------------------------------------------------------- /src/lib/sarif-result-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/src/lib/sarif-result-builder.ts -------------------------------------------------------------------------------- /src/lib/sarif-rule-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/src/lib/sarif-rule-builder.ts -------------------------------------------------------------------------------- /src/lib/sarif-run-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/src/lib/sarif-run-builder.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/types/node-sarif-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/src/types/node-sarif-builder.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvuillam/node-sarif-builder/HEAD/yarn.lock --------------------------------------------------------------------------------