├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── README.md ├── package.json ├── tasks └── stylefmt.js └── test └── fixtures └── input.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/grunt-stylefmt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/grunt-stylefmt/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/grunt-stylefmt/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/grunt-stylefmt/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/grunt-stylefmt/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/grunt-stylefmt/HEAD/package.json -------------------------------------------------------------------------------- /tasks/stylefmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/grunt-stylefmt/HEAD/tasks/stylefmt.js -------------------------------------------------------------------------------- /test/fixtures/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/grunt-stylefmt/HEAD/test/fixtures/input.css --------------------------------------------------------------------------------