mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
18 lines
392 B
CoffeeScript
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')
|