documentation/test/fixture/meta.input.js
Tom MacWright 25152edeb9 style(prettier): Use prettier for code formatting (#710)
* style(prettier): Use prettier for code formatting

This saves us style issues. Also adds husky and lint-staged for pre-commit testing

Refs https://github.com/documentationjs/documentation/issues/709
2017-04-10 14:25:45 -04:00

16 lines
323 B
JavaScript

/**
* This function returns the number one.
* @returns {number} numberone
* @see {@link http://github.com/|github}
* @see TestCase
* @see [markdown link](http://foo.com/)
* @version 1.0.0
* @since 2.0.0
* @copyright Tom MacWright
* @license BSD
*/
module.exports = function() {
// this returns 1
return 1;
};