UNPKG

@isentinel/eslint-plugin-comment-length

Version:
30 lines 862 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.optionsSchema = exports.defaultOptions = void 0; exports.defaultOptions = [ { mode: "overflow-only", maxLength: 80, ignoreUrls: true, ignoreCommentsWithCode: false, tabSize: 2, logicalWrap: false, }, ]; exports.optionsSchema = [ { type: "object", properties: { mode: { type: "string", enum: ["overflow-only", "compact-on-overflow", "compact"], }, maxLength: { type: "integer" }, ignoreUrls: { type: "boolean" }, ignoreCommentsWithCode: { type: "boolean" }, tabSize: { type: "integer" }, logicalWrap: { type: "boolean" }, }, }, ]; //# sourceMappingURL=typings.options.js.map