├── .editorconfig ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── fixtures ├── typescript-v2-116.ortam.now.sh_2019-11-08_14-35-32.html ├── typescript-v2-116.ortam.now.sh_2019-11-08_14-35-32.json ├── typescript-v2-116.ortam.now.sh_2019-11-08_14-35-37.html ├── typescript-v2-116.ortam.now.sh_2019-11-08_14-35-37.json ├── typescript-v2-116.ortam.now.sh_2019-11-08_14-35-43.html ├── typescript-v2-116.ortam.now.sh_2019-11-08_14-35-43.json ├── typescript-v2-140.ortam.now.sh_2019-12-02_20-44-56.json ├── typescript-v2-140.ortam.now.sh_2019-12-02_20-45-02.json └── typescript-v2-140.ortam.now.sh_2019-12-02_20-45-10.json ├── package.json ├── src ├── index.test.ts ├── index.ts ├── types.ts └── utils │ ├── mdTable.test.ts │ └── mdTable.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-32.html -------------------------------------------------------------------------------- /fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-32.json -------------------------------------------------------------------------------- /fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-37.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-37.html -------------------------------------------------------------------------------- /fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-37.json -------------------------------------------------------------------------------- /fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-43.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-43.html -------------------------------------------------------------------------------- /fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/fixtures/typescript-v2-116.ortam.now.sh_2019-11-08_14-35-43.json -------------------------------------------------------------------------------- /fixtures/typescript-v2-140.ortam.now.sh_2019-12-02_20-44-56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/fixtures/typescript-v2-140.ortam.now.sh_2019-12-02_20-44-56.json -------------------------------------------------------------------------------- /fixtures/typescript-v2-140.ortam.now.sh_2019-12-02_20-45-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/fixtures/typescript-v2-140.ortam.now.sh_2019-12-02_20-45-02.json -------------------------------------------------------------------------------- /fixtures/typescript-v2-140.ortam.now.sh_2019-12-02_20-45-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/fixtures/typescript-v2-140.ortam.now.sh_2019-12-02_20-45-10.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/package.json -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/mdTable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/src/utils/mdTable.test.ts -------------------------------------------------------------------------------- /src/utils/mdTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/src/utils/mdTable.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orta/danger-plugin-lighthouse/HEAD/yarn.lock --------------------------------------------------------------------------------