mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
* 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
16 lines
323 B
JavaScript
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;
|
|
};
|