eslint-config-chain-able
Version:
an opinionated ESLint configuration
36 lines (29 loc) • 562 B
JavaScript
/**
* File description
*/
/**
* Sample class
* @class Point
* @param {Object} [coords]
* @param {Int} coords.x
* @param {Int} coords.y
*/
function Point(options) {
}
/*
* This should be skipped
*/
/**
* Tells if point was ever initilized with coordinates
* @property {Boolean} [initilized=false]
*/
Point.prototype.initilized = false;
/**
* Moves point by x,y
* @method move
* @param {Object} [by]
* @param {Int} by.x
* @param {Int} by.y
*/
Point.prototype.move = function(by) {
}