├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── dangerfile.ts ├── package.json ├── screenshots ├── failure.png └── success.png ├── scripts └── deploy-docs.js ├── src ├── __tests__ │ ├── __fixtures__ │ │ ├── failure-results.json │ │ └── success-results.json │ ├── __snapshots__ │ │ ├── index.test.ts.snap │ │ └── prettyResults.test.ts.snap │ ├── index.test.ts │ └── prettyResults.test.ts ├── ambient.d.ts ├── index.ts ├── prettyResults.ts └── resultHandlers.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/README.md -------------------------------------------------------------------------------- /dangerfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/dangerfile.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/screenshots/failure.png -------------------------------------------------------------------------------- /screenshots/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/screenshots/success.png -------------------------------------------------------------------------------- /scripts/deploy-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/scripts/deploy-docs.js -------------------------------------------------------------------------------- /src/__tests__/__fixtures__/failure-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/src/__tests__/__fixtures__/failure-results.json -------------------------------------------------------------------------------- /src/__tests__/__fixtures__/success-results.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/src/__tests__/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/prettyResults.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/src/__tests__/__snapshots__/prettyResults.test.ts.snap -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/__tests__/prettyResults.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/src/__tests__/prettyResults.test.ts -------------------------------------------------------------------------------- /src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/src/ambient.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/prettyResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/src/prettyResults.ts -------------------------------------------------------------------------------- /src/resultHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/src/resultHandlers.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macklinu/danger-plugin-tslint/HEAD/yarn.lock --------------------------------------------------------------------------------