Files
atom/Gruntfile.coffee
2013-05-28 17:30:09 -07:00

18 lines
392 B
CoffeeScript

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')