Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/crunch-io/grunt-comma-last
- Owner: Crunch-io
- License: gpl-2.0
- Created: 2015-12-27T20:02:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-04T17:02:43.000Z (almost 9 years ago)
- Last Synced: 2024-03-26T23:14:40.577Z (9 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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')
}
```