├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── README.md ├── index.js ├── index.test.js └── package.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mheap/problem-matcher/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mheap/problem-matcher/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mheap/problem-matcher/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mheap/problem-matcher/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mheap/problem-matcher/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mheap/problem-matcher/HEAD/index.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mheap/problem-matcher/HEAD/package.json --------------------------------------------------------------------------------