├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ └── eslint-sarif-test.yml ├── .gitignore ├── .prettierrc.js ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── RELEASE.md ├── SECURITY.md ├── SUPPORT.md ├── package.json ├── packages ├── eslint-formatter-sarif │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ └── sarif-test.js │ ├── package-lock.json │ ├── package.json │ └── sarif.js ├── jest-sarif │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ ├── __fixtures__ │ │ │ └── sarif-log.json │ │ └── matchers │ │ │ ├── to-be-valid-sarif-definitions-test.ts │ │ │ └── to-be-valid-sarif-log-test.ts │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── matchers │ │ │ ├── index.ts │ │ │ ├── to-be-valid-sarif-for.ts │ │ │ └── to-be-valid-sarif-log.ts │ └── tsconfig.json ├── sarif-builder │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json └── sarif-matcher-utils │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── scripts │ └── generate-definitions.js │ ├── src │ ├── build-matcher.ts │ ├── index.ts │ ├── schemas │ │ └── sarif-2.1.0-rtm.5.json │ └── types │ │ ├── definition.ts │ │ └── index.ts │ ├── tests │ ├── build-matcher-test.ts │ └── fixtures │ │ └── sarif-log.json │ ├── tsconfig.json │ └── vitest.config.ts ├── tsconfig-base.json ├── tsconfig.json └── types └── sync-fetch.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/eslint-sarif-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/.github/workflows/eslint-sarif-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-sarif/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/eslint-formatter-sarif/CHANGELOG.md -------------------------------------------------------------------------------- /packages/eslint-formatter-sarif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/eslint-formatter-sarif/README.md -------------------------------------------------------------------------------- /packages/eslint-formatter-sarif/__tests__/sarif-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/eslint-formatter-sarif/__tests__/sarif-test.js -------------------------------------------------------------------------------- /packages/eslint-formatter-sarif/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/eslint-formatter-sarif/package-lock.json -------------------------------------------------------------------------------- /packages/eslint-formatter-sarif/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/eslint-formatter-sarif/package.json -------------------------------------------------------------------------------- /packages/eslint-formatter-sarif/sarif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/eslint-formatter-sarif/sarif.js -------------------------------------------------------------------------------- /packages/jest-sarif/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/CHANGELOG.md -------------------------------------------------------------------------------- /packages/jest-sarif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/README.md -------------------------------------------------------------------------------- /packages/jest-sarif/__tests__/__fixtures__/sarif-log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/__tests__/__fixtures__/sarif-log.json -------------------------------------------------------------------------------- /packages/jest-sarif/__tests__/matchers/to-be-valid-sarif-definitions-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/__tests__/matchers/to-be-valid-sarif-definitions-test.ts -------------------------------------------------------------------------------- /packages/jest-sarif/__tests__/matchers/to-be-valid-sarif-log-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/__tests__/matchers/to-be-valid-sarif-log-test.ts -------------------------------------------------------------------------------- /packages/jest-sarif/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/jest.config.js -------------------------------------------------------------------------------- /packages/jest-sarif/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/package-lock.json -------------------------------------------------------------------------------- /packages/jest-sarif/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/package.json -------------------------------------------------------------------------------- /packages/jest-sarif/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/src/index.ts -------------------------------------------------------------------------------- /packages/jest-sarif/src/matchers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/src/matchers/index.ts -------------------------------------------------------------------------------- /packages/jest-sarif/src/matchers/to-be-valid-sarif-for.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/src/matchers/to-be-valid-sarif-for.ts -------------------------------------------------------------------------------- /packages/jest-sarif/src/matchers/to-be-valid-sarif-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/src/matchers/to-be-valid-sarif-log.ts -------------------------------------------------------------------------------- /packages/jest-sarif/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/jest-sarif/tsconfig.json -------------------------------------------------------------------------------- /packages/sarif-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-builder/README.md -------------------------------------------------------------------------------- /packages/sarif-builder/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-builder/jest.config.js -------------------------------------------------------------------------------- /packages/sarif-builder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-builder/package.json -------------------------------------------------------------------------------- /packages/sarif-builder/src/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /packages/sarif-builder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-builder/tsconfig.json -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/CHANGELOG.md -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/README.md -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/package.json -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/scripts/generate-definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/scripts/generate-definitions.js -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/src/build-matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/src/build-matcher.ts -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/src/index.ts -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/src/schemas/sarif-2.1.0-rtm.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/src/schemas/sarif-2.1.0-rtm.5.json -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/src/types/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/src/types/definition.ts -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/src/types/index.ts -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/tests/build-matcher-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/tests/build-matcher-test.ts -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/tests/fixtures/sarif-log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/tests/fixtures/sarif-log.json -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/tsconfig.json -------------------------------------------------------------------------------- /packages/sarif-matcher-utils/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/packages/sarif-matcher-utils/vitest.config.ts -------------------------------------------------------------------------------- /tsconfig-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/tsconfig-base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-js-sdk/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/sync-fetch.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'sync-fetch'; 2 | --------------------------------------------------------------------------------