├── .eslintrc-server ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE.txt ├── README.md ├── package.json ├── pull-report.js ├── templates ├── html.hbs └── text.hbs └── yarn.lock /.eslintrc-server: -------------------------------------------------------------------------------- 1 | --- 2 | extends: 3 | - "defaults/configurations/walmart/es5-node" 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/package.json -------------------------------------------------------------------------------- /pull-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/pull-report.js -------------------------------------------------------------------------------- /templates/html.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/templates/html.hbs -------------------------------------------------------------------------------- /templates/text.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/templates/text.hbs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/pull-report/HEAD/yarn.lock --------------------------------------------------------------------------------