eslint-plugin-signature-design
Version:
ESLint rule to make function signatures better. Currently has only one rule: prevent functions from having too many arguments with the same type.
8 lines (7 loc) • 364 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const max_duplicate_param_types_1 = __importDefault(require("./max-duplicate-param-types"));
exports.default = max_duplicate_param_types_1.default;