Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/crunch-io/grunt-comma-last

Did your team decide to use comma-first style for JavaScript? This tool makes easier to rollback such an awful decision
https://github.com/crunch-io/grunt-comma-last

Last synced: about 1 month ago
JSON representation

Did your team decide to use comma-first style for JavaScript? This tool makes easier to rollback such an awful decision

Awesome Lists containing this project

README

        

# grunt-comma-last
Did your team decide to use comma-first style for JavaScript? This tool makes easier to rollback such an awful decision

##Setup

Install `npm install [email protected]`

Setup a new grunt task

```JavaScript
'use strict'

module.exports = function(grunt) {

grunt.initConfig({
commaLast : {
default : {
files : [
{ src : ['src/**/*.js'], dest : 'transforms' }
]
}
}
})

grunt.loadNpmTasks('grunt-comma-last')
}
```