Returns true if a file has a banner code comment. Used for linting.
npm install has-banner> Returns true if a file has a banner code comment. Used for linting.
Install with npm:
``sh`
$ npm install has-banner --save
`js
var hasBanner = require('has-banner');
hasBanner('/! Copyright whatever /');
//=> 'true'
hasBanner('a/! Copyright whatever /');
//=> 'false'
`
Pass an array of keywords to disqualify banners (jshint and global are already included)
`js
hasBanner('/! jshint:foo /');
//=> false
hasBanner('/! foo /', ['foo']);
//=> false
`
* add-banner: Add a banner to a string. Banners are just Lo-Dash/underscore templates, if a custom one… more | homepage
* strip-banner: Strip banners from code. | homepage
* update-banner: Add or update a banner in a string. | homepage
* write-banner: Add a banner to any file. | homepage
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Generate readme and API documentation with verb:
`sh`
$ npm install verb && npm run docs
Or, if verb is installed globally:
`sh`
$ verb
Install dev dependencies:
`sh``
$ npm install -d && npm test
Jon Schlinkert
* github/jonschlinkert
* twitter/jonschlinkert
Copyright © 2016 Jon Schlinkert
Released under the MIT license.
*
_This file was generated by verb, v0.9.0, on March 20, 2016._