├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── lib ├── prettify.coffee └── range-finder.coffee ├── menus └── prettify.cson └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambutler/atom-prettify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambutler/atom-prettify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambutler/atom-prettify/HEAD/README.md -------------------------------------------------------------------------------- /lib/prettify.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambutler/atom-prettify/HEAD/lib/prettify.coffee -------------------------------------------------------------------------------- /lib/range-finder.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambutler/atom-prettify/HEAD/lib/range-finder.coffee -------------------------------------------------------------------------------- /menus/prettify.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambutler/atom-prettify/HEAD/menus/prettify.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adambutler/atom-prettify/HEAD/package.json --------------------------------------------------------------------------------