├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── package.json ├── src └── codeowners-utils.ts ├── test └── codeowners-utils.test.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | dist 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | dist 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiebuilds/codeowners-utils/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiebuilds/codeowners-utils/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiebuilds/codeowners-utils/HEAD/package.json -------------------------------------------------------------------------------- /src/codeowners-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiebuilds/codeowners-utils/HEAD/src/codeowners-utils.ts -------------------------------------------------------------------------------- /test/codeowners-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiebuilds/codeowners-utils/HEAD/test/codeowners-utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamiebuilds/codeowners-utils/HEAD/tsconfig.json --------------------------------------------------------------------------------