├── .gitignore ├── LICENSE ├── README.md ├── package.json └── src └── foo.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartw/pretty_husky/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartw/pretty_husky/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartw/pretty_husky/HEAD/package.json -------------------------------------------------------------------------------- /src/foo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartw/pretty_husky/HEAD/src/foo.test.js --------------------------------------------------------------------------------