https://github.com/aranasoft/lineman-coffeelint
Provide CoffeeLint functionality to your Lineman application.
https://github.com/aranasoft/lineman-coffeelint
Last synced: about 1 year ago
JSON representation
Provide CoffeeLint functionality to your Lineman application.
- Host: GitHub
- URL: https://github.com/aranasoft/lineman-coffeelint
- Owner: aranasoft
- License: bsd-3-clause
- Created: 2014-01-14T16:04:40.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-15T13:29:51.000Z (over 11 years ago)
- Last Synced: 2025-03-01T21:46:00.703Z (over 1 year ago)
- Language: CoffeeScript
- Homepage:
- Size: 199 KB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-BSD
Awesome Lists containing this project
README
# lineman-coffeelint
Provide CoffeeLint functionality to your [Lineman](http://linemanjs.com) application. This plugin uses the [grunt-coffeelint](https://github.com/vojtajina/grunt-coffeelint) task and will perform a [CoffeeLint](http://www.coffeelint.org/) check on all CoffeeScript files within your application.
## Installation
```bash
$ npm install lineman-coffeelint --save-dev
```
## Usage
`lineman-coffeelint` will check all of your CoffeeScript defined in `files.coffee.app` of your Lineman configuration. By default, Lineman configures this to `app/js/**/*.coffee`.
To override the files, update the value of coffeelint.app within `config/application.js`:
```bash
module.exports = function(lineman){
return {
coffeelint: {
app: ["app/js/**/*.coffee"]
}
}
};
```
## License
lineman-coffeelint is copyright of Arana Software, released under the [BSD License](http://opensource.org/licenses/BSD-3-Clause).