mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-29 01:27:00 +03:00
Add initial Gruntfile
This commit is contained in:
parent
40b654048b
commit
40dd8275d2
17
Gruntfile.coffee
Normal file
17
Gruntfile.coffee
Normal 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')
|
@ -57,7 +57,10 @@
|
|||||||
"text-tmbundle": "1.0.0",
|
"text-tmbundle": "1.0.0",
|
||||||
"textmate-clojure": "1.0.0",
|
"textmate-clojure": "1.0.0",
|
||||||
"xml-tmbundle": "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": {
|
"devDependencies": {
|
||||||
"biscotto": "0.0.11"
|
"biscotto": "0.0.11"
|
||||||
|
Loading…
Reference in New Issue
Block a user