Add initial Gruntfile

This commit is contained in:
Kevin Sawicki 2013-05-28 17:30:09 -07:00
parent 40b654048b
commit 40dd8275d2
2 changed files with 21 additions and 1 deletions

17
Gruntfile.coffee Normal file
View File

@ -0,0 +1,17 @@
module.exports = (grunt) ->
grunt.initConfig
pkg: grunt.file.readJSON('package.json')
coffeelint:
options:
max_line_length:
level: 'ignore'
src: ['src/**/*.coffee']
test: ['spec/**/*.coffee']
grunt.loadNpmTasks('grunt-coffeelint')
grunt.registerTask('lint', ['coffeelint:src', 'coffeelint:test'])
grunt.registerTask('default', 'lint')

View File

@ -57,7 +57,10 @@
"text-tmbundle": "1.0.0",
"textmate-clojure": "1.0.0",
"xml-tmbundle": "1.0.0",
"yaml-tmbundle": "1.0.0"
"yaml-tmbundle": "1.0.0",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-coffeelint": "0.0.6"
},
"devDependencies": {
"biscotto": "0.0.11"