{ "name": "grunt-coffeelint", "description": "Lint your Coffee", "version": "0.0.7", "homepage": "https://github.com/vojtajina/grunt-coffeelint", "author": { "name": "Vojta Jína", "email": "vojta.jina@gmail.com" }, "contributors": [ { "name": "Christoph Neuroth", "email": "christoph.neuroth@gmail.com" }, { "name": "Ed Siok", "email": "sioked@gmail.com" }, { "name": "travis4all", "email": "travis4all@diamon.dz" } ], "repository": { "type": "git", "url": "git://github.com/vojtajina/grunt-coffeelint.git" }, "bugs": { "url": "https://github.com/vojtajina/grunt-coffeelint/issues" }, "licenses": [ { "type": "MIT", "url": "http://github.com/vojtajina/grunt-coffeelint/blob/master/LICENSE-" } ], "main": "grunt.js", "engines": { "node": "*" }, "scripts": { "test": "grunt test" }, "peerDependencies": { "grunt": "~0.4" }, "dependencies": { "coffeelint": "~0.5" }, "devDependencies": { "grunt": "~0.4", "grunt-bump": "~0.0.7", "grunt-npm": "~0.0.2" }, "keywords": [ "gruntplugin" ], "readme": "[![build status](https://secure.travis-ci.org/vojtajina/grunt-coffeelint.png)](http://travis-ci.org/vojtajina/grunt-coffeelint)\n# grunt-coffeelint\n\n**Lint your CoffeeScript by [CoffeeLint].**\n\n## Installation\n\nInstall npm package, next to your project's `Gruntfile.js` file:\n\n npm install grunt-coffeelint\n\nAdd this line to your project's `Gruntfile.js`:\n\n grunt.loadNpmTasks('grunt-coffeelint');\n\n\n## Configuration\n\n`coffeelint` is a multitask, so you can use it similary to `lint`, `watch` etc...\n\n````javascript\ngrunt.initConfig({\n ...\n coffeelint: {\n app: ['app/*.coffee', 'scripts/*.coffee']\n }\n },\n ...\n});\n````\n\n### Options per target\n\n````javascript\ngrunt.initConfig({\n ...\n coffeelint: {\n app: ['app/*.coffee', 'scripts/*.coffee'],\n tests: {\n files: {\n src: ['tests/*.coffee']\n },\n options: {\n 'no_trailing_whitespace': {\n 'level': 'error'\n }\n }\n }\n },\n ...\n});\n````\n\n### Global - default options\n\n````javascript\ngrunt.initConfig({\n ...\n coffeelint: {\n options: {\n 'no_trailing_whitespace': {\n 'level': 'error'\n }\n }\n },\n ...\n});\n````\n\nFor available options see [example configuration] or [coffeelint homepage].\n\n\n[CoffeeLint]: http://www.coffeelint.org/\n[coffeelint homepage]: http://www.coffeelint.org/\n[example configuration]: https://raw.github.com/clutchski/coffeelint/master/examples/coffeelint.json\n", "readmeFilename": "README.md", "_id": "grunt-coffeelint@0.0.7", "dist": { "shasum": "b782bf05aeb462dce2e566116849d369a1f19f4f" }, "_from": "grunt-coffeelint@0.0.7", "_resolved": "https://registry.npmjs.org/grunt-coffeelint/-/grunt-coffeelint-0.0.7.tgz" }