diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-05-28 00:38:50 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-05-28 00:40:43 +0200 |
commit | 7fff4499fd915bcea3fa93b1aa8b35f4fe7a6027 (patch) | |
tree | 6de9a1aebd150a23b7f8c273ec657a5d0a18fe3e /node_modules/tslint/lib/rules/completedDocsRule.js | |
parent | 963b7a41feb29cc4be090a2446bdfe0c1f1bcd81 (diff) |
add linting (and some initial fixes)
Diffstat (limited to 'node_modules/tslint/lib/rules/completedDocsRule.js')
-rw-r--r-- | node_modules/tslint/lib/rules/completedDocsRule.js | 332 |
1 files changed, 332 insertions, 0 deletions
diff --git a/node_modules/tslint/lib/rules/completedDocsRule.js b/node_modules/tslint/lib/rules/completedDocsRule.js new file mode 100644 index 000000000..6107859a6 --- /dev/null +++ b/node_modules/tslint/lib/rules/completedDocsRule.js @@ -0,0 +1,332 @@ +"use strict"; +/** + * @license + * Copyright 2013 Palantir Technologies, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +Object.defineProperty(exports, "__esModule", { value: true }); +var tslib_1 = require("tslib"); +var ts = require("typescript"); +var Lint = require("../index"); +var utils_1 = require("../utils"); +exports.ALL = "all"; +exports.ARGUMENT_CLASSES = "classes"; +exports.ARGUMENT_ENUMS = "enums"; +exports.ARGUMENT_FUNCTIONS = "functions"; +exports.ARGUMENT_INTERFACES = "interfaces"; +exports.ARGUMENT_METHODS = "methods"; +exports.ARGUMENT_NAMESPACES = "namespaces"; +exports.ARGUMENT_PROPERTIES = "properties"; +exports.ARGUMENT_TYPES = "types"; +exports.ARGUMENT_VARIABLES = "variables"; +exports.DESCRIPTOR_LOCATIONS = "locations"; +exports.DESCRIPTOR_PRIVACIES = "privacies"; +exports.DESCRIPTOR_VISIBILITIES = "visibilities"; +exports.LOCATION_INSTANCE = "instance"; +exports.LOCATION_STATIC = "static"; +exports.PRIVACY_PRIVATE = "private"; +exports.PRIVACY_PROTECTED = "protected"; +exports.PRIVACY_PUBLIC = "public"; +exports.VISIBILITY_EXPORTED = "exported"; +exports.VISIBILITY_INTERNAL = "internal"; +var Rule = (function (_super) { + tslib_1.__extends(Rule, _super); + function Rule() { + return _super !== null && _super.apply(this, arguments) || this; + } + /* tslint:enable:object-literal-sort-keys */ + Rule.prototype.applyWithProgram = function (sourceFile, program) { + var options = this.getOptions(); + var completedDocsWalker = new CompletedDocsWalker(sourceFile, options, program); + completedDocsWalker.setRequirements(this.getRequirements(options.ruleArguments)); + return this.applyWithWalker(completedDocsWalker); + }; + Rule.prototype.getRequirements = function (ruleArguments) { + if (ruleArguments.length === 0) { + ruleArguments = Rule.defaultArguments; + } + return Requirement.constructRequirements(ruleArguments); + }; + return Rule; +}(Lint.Rules.TypedRule)); +Rule.FAILURE_STRING_EXIST = "Documentation must exist for "; +Rule.defaultArguments = [ + exports.ARGUMENT_CLASSES, + exports.ARGUMENT_FUNCTIONS, + exports.ARGUMENT_METHODS, + exports.ARGUMENT_PROPERTIES, +]; +Rule.ARGUMENT_DESCRIPTOR_BLOCK = { + properties: (_a = {}, + _a[exports.DESCRIPTOR_VISIBILITIES] = { + enum: [ + exports.ALL, + exports.VISIBILITY_EXPORTED, + exports.VISIBILITY_INTERNAL, + ], + type: "string", + }, + _a), + type: "object", +}; +Rule.ARGUMENT_DESCRIPTOR_CLASS = { + properties: (_b = {}, + _b[exports.DESCRIPTOR_LOCATIONS] = { + enum: [ + exports.ALL, + exports.LOCATION_INSTANCE, + exports.LOCATION_STATIC, + ], + type: "string", + }, + _b[exports.DESCRIPTOR_PRIVACIES] = { + enum: [ + exports.ALL, + exports.PRIVACY_PRIVATE, + exports.PRIVACY_PROTECTED, + exports.PRIVACY_PUBLIC, + ], + type: "string", + }, + _b), + type: "object", +}; +/* tslint:disable:object-literal-sort-keys */ +Rule.metadata = { + ruleName: "completed-docs", + description: "Enforces documentation for important items be filled out.", + optionsDescription: (_c = ["\n `true` to enable for [\"", "\", \"", "\", \"", "\", \"", "\"],\n or an array with each item in one of two formats:\n\n * `string` to enable for that type\n * `object` keying types to when their documentation is required:\n * `\"", "\"` and `\"", "\"` may specify:\n * `\"", "\"`:\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`:\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`\n * All other types may specify `\"", "\"`:\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`\n\n Types that may be enabled are:\n\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`\n * `\"", "\"`"], _c.raw = ["\n \\`true\\` to enable for [\"", "\", \"", "\", \"", "\", \"", "\"],\n or an array with each item in one of two formats:\n\n * \\`string\\` to enable for that type\n * \\`object\\` keying types to when their documentation is required:\n * \\`\"", "\"\\` and \\`\"", "\"\\` may specify:\n * \\`\"", "\"\\`:\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`:\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * All other types may specify \\`\"", "\"\\`:\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n\n Types that may be enabled are:\n\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`\n * \\`\"", "\"\\`"], Lint.Utils.dedent(_c, exports.ARGUMENT_CLASSES, exports.ARGUMENT_FUNCTIONS, exports.ARGUMENT_METHODS, exports.ARGUMENT_PROPERTIES, exports.ARGUMENT_METHODS, exports.ARGUMENT_PROPERTIES, exports.DESCRIPTOR_PRIVACIES, exports.ALL, exports.PRIVACY_PRIVATE, exports.PRIVACY_PROTECTED, exports.PRIVACY_PUBLIC, exports.DESCRIPTOR_LOCATIONS, exports.ALL, exports.LOCATION_INSTANCE, exports.LOCATION_STATIC, exports.DESCRIPTOR_VISIBILITIES, exports.ALL, exports.VISIBILITY_EXPORTED, exports.VISIBILITY_INTERNAL, exports.ARGUMENT_CLASSES, exports.ARGUMENT_ENUMS, exports.ARGUMENT_FUNCTIONS, exports.ARGUMENT_INTERFACES, exports.ARGUMENT_METHODS, exports.ARGUMENT_NAMESPACES, exports.ARGUMENT_PROPERTIES, exports.ARGUMENT_TYPES, exports.ARGUMENT_VARIABLES)), + options: { + type: "array", + items: { + anyOf: [ + { + enum: Rule.defaultArguments, + type: "string", + }, + { + type: "object", + properties: (_d = {}, + _d[exports.ARGUMENT_CLASSES] = Rule.ARGUMENT_DESCRIPTOR_BLOCK, + _d[exports.ARGUMENT_ENUMS] = Rule.ARGUMENT_DESCRIPTOR_BLOCK, + _d[exports.ARGUMENT_FUNCTIONS] = Rule.ARGUMENT_DESCRIPTOR_BLOCK, + _d[exports.ARGUMENT_INTERFACES] = Rule.ARGUMENT_DESCRIPTOR_BLOCK, + _d[exports.ARGUMENT_METHODS] = Rule.ARGUMENT_DESCRIPTOR_CLASS, + _d[exports.ARGUMENT_NAMESPACES] = Rule.ARGUMENT_DESCRIPTOR_BLOCK, + _d[exports.ARGUMENT_PROPERTIES] = Rule.ARGUMENT_DESCRIPTOR_CLASS, + _d[exports.ARGUMENT_TYPES] = Rule.ARGUMENT_DESCRIPTOR_BLOCK, + _d[exports.ARGUMENT_VARIABLES] = Rule.ARGUMENT_DESCRIPTOR_BLOCK, + _d), + }, + ], + }, + }, + optionExamples: [ + true, + [true, exports.ARGUMENT_ENUMS, exports.ARGUMENT_FUNCTIONS, exports.ARGUMENT_METHODS], + [ + true, + (_e = {}, + _e[exports.ARGUMENT_ENUMS] = true, + _e[exports.ARGUMENT_FUNCTIONS] = (_f = {}, + _f[exports.DESCRIPTOR_VISIBILITIES] = [exports.VISIBILITY_EXPORTED], + _f), + _e[exports.ARGUMENT_METHODS] = (_g = {}, + _g[exports.DESCRIPTOR_LOCATIONS] = exports.LOCATION_INSTANCE, + _g[exports.DESCRIPTOR_PRIVACIES] = [exports.PRIVACY_PUBLIC, exports.PRIVACY_PROTECTED], + _g), + _e), + ], + ], + type: "style", + typescriptOnly: false, +}; +exports.Rule = Rule; +var Requirement = (function () { + // tslint:disable-next-line no-object-literal-type-assertion + function Requirement(descriptor) { + if (descriptor === void 0) { descriptor = {}; } + this.descriptor = descriptor; + } + Requirement.constructRequirements = function (ruleArguments) { + var requirements = new Map(); + for (var _i = 0, ruleArguments_1 = ruleArguments; _i < ruleArguments_1.length; _i++) { + var ruleArgument = ruleArguments_1[_i]; + Requirement.addRequirements(requirements, ruleArgument); + } + return requirements; + }; + Requirement.addRequirements = function (requirements, descriptor) { + if (typeof descriptor === "string") { + requirements.set(descriptor, new BlockRequirement()); + return; + } + for (var type in descriptor) { + if (utils_1.hasOwnProperty(descriptor, type)) { + requirements.set(type, (type === "methods" || type === "properties") + ? new ClassRequirement(descriptor[type]) + : new BlockRequirement(descriptor[type])); + } + } + }; + Requirement.prototype.createSet = function (values) { + if (values === undefined || values.length === 0) { + values = [exports.ALL]; + } + return new Set(values); + }; + return Requirement; +}()); +var BlockRequirement = (function (_super) { + tslib_1.__extends(BlockRequirement, _super); + function BlockRequirement() { + var _this = _super !== null && _super.apply(this, arguments) || this; + _this.visibilities = _this.createSet(_this.descriptor.visibilities); + return _this; + } + BlockRequirement.prototype.shouldNodeBeDocumented = function (node) { + if (this.visibilities.has(exports.ALL)) { + return true; + } + if (Lint.hasModifier(node.modifiers, ts.SyntaxKind.ExportKeyword)) { + return this.visibilities.has(exports.VISIBILITY_EXPORTED); + } + return this.visibilities.has(exports.VISIBILITY_INTERNAL); + }; + return BlockRequirement; +}(Requirement)); +var ClassRequirement = (function (_super) { + tslib_1.__extends(ClassRequirement, _super); + function ClassRequirement() { + var _this = _super !== null && _super.apply(this, arguments) || this; + _this.locations = _this.createSet(_this.descriptor.locations); + _this.privacies = _this.createSet(_this.descriptor.privacies); + return _this; + } + ClassRequirement.prototype.shouldNodeBeDocumented = function (node) { + return this.shouldLocationBeDocumented(node) && this.shouldPrivacyBeDocumented(node); + }; + ClassRequirement.prototype.shouldLocationBeDocumented = function (node) { + if (this.locations.has(exports.ALL)) { + return true; + } + if (Lint.hasModifier(node.modifiers, ts.SyntaxKind.StaticKeyword)) { + return this.locations.has(exports.LOCATION_STATIC); + } + return this.locations.has(exports.LOCATION_INSTANCE); + }; + ClassRequirement.prototype.shouldPrivacyBeDocumented = function (node) { + if (this.privacies.has(exports.ALL)) { + return true; + } + if (Lint.hasModifier(node.modifiers, ts.SyntaxKind.PrivateKeyword)) { + return this.privacies.has(exports.PRIVACY_PRIVATE); + } + if (Lint.hasModifier(node.modifiers, ts.SyntaxKind.ProtectedKeyword)) { + return this.privacies.has(exports.PRIVACY_PROTECTED); + } + return this.privacies.has(exports.PRIVACY_PUBLIC); + }; + return ClassRequirement; +}(Requirement)); +var CompletedDocsWalker = (function (_super) { + tslib_1.__extends(CompletedDocsWalker, _super); + function CompletedDocsWalker() { + return _super !== null && _super.apply(this, arguments) || this; + } + CompletedDocsWalker.prototype.setRequirements = function (requirements) { + this.requirements = requirements; + }; + CompletedDocsWalker.prototype.visitClassDeclaration = function (node) { + this.checkNode(node, exports.ARGUMENT_CLASSES); + _super.prototype.visitClassDeclaration.call(this, node); + }; + CompletedDocsWalker.prototype.visitEnumDeclaration = function (node) { + this.checkNode(node, exports.ARGUMENT_ENUMS); + _super.prototype.visitEnumDeclaration.call(this, node); + }; + CompletedDocsWalker.prototype.visitFunctionDeclaration = function (node) { + this.checkNode(node, exports.ARGUMENT_FUNCTIONS); + _super.prototype.visitFunctionDeclaration.call(this, node); + }; + CompletedDocsWalker.prototype.visitInterfaceDeclaration = function (node) { + this.checkNode(node, exports.ARGUMENT_INTERFACES); + _super.prototype.visitInterfaceDeclaration.call(this, node); + }; + CompletedDocsWalker.prototype.visitMethodDeclaration = function (node) { + this.checkNode(node, exports.ARGUMENT_METHODS); + _super.prototype.visitMethodDeclaration.call(this, node); + }; + CompletedDocsWalker.prototype.visitModuleDeclaration = function (node) { + this.checkNode(node, exports.ARGUMENT_NAMESPACES); + _super.prototype.visitModuleDeclaration.call(this, node); + }; + CompletedDocsWalker.prototype.visitPropertyDeclaration = function (node) { + this.checkNode(node, exports.ARGUMENT_PROPERTIES); + _super.prototype.visitPropertyDeclaration.call(this, node); + }; + CompletedDocsWalker.prototype.visitTypeAliasDeclaration = function (node) { + this.checkNode(node, exports.ARGUMENT_TYPES); + _super.prototype.visitTypeAliasDeclaration.call(this, node); + }; + CompletedDocsWalker.prototype.visitVariableDeclaration = function (node) { + this.checkNode(node, exports.ARGUMENT_VARIABLES); + _super.prototype.visitVariableDeclaration.call(this, node); + }; + CompletedDocsWalker.prototype.checkNode = function (node, nodeType) { + var name = node.name; + if (name === undefined) { + return; + } + var requirement = this.requirements.get(nodeType); + if (requirement === undefined || !requirement.shouldNodeBeDocumented(node)) { + return; + } + var symbol = this.getTypeChecker().getSymbolAtLocation(name); + if (symbol === undefined) { + return; + } + var comments = symbol.getDocumentationComment(); + this.checkComments(node, nodeType, comments); + }; + CompletedDocsWalker.prototype.checkComments = function (node, nodeDescriptor, comments) { + if (comments.map(function (comment) { return comment.text; }).join("").trim() === "") { + this.addDocumentationFailure(node, nodeDescriptor); + } + }; + CompletedDocsWalker.prototype.addDocumentationFailure = function (node, nodeType) { + var start = node.getStart(); + var width = node.getText().split(/\r|\n/g)[0].length; + var description = this.describeDocumentationFailure(node, nodeType); + this.addFailureAt(start, width, description); + }; + CompletedDocsWalker.prototype.describeDocumentationFailure = function (node, nodeType) { + var _this = this; + var description = Rule.FAILURE_STRING_EXIST; + if (node.modifiers !== undefined) { + description += node.modifiers.map(function (modifier) { return _this.describeModifier(modifier.kind); }).join(",") + " "; + } + return "" + description + nodeType + "."; + }; + CompletedDocsWalker.prototype.describeModifier = function (kind) { + var description = ts.SyntaxKind[kind].toLowerCase().split("keyword")[0]; + var alias = CompletedDocsWalker.modifierAliases[description]; + return alias !== undefined ? alias : description; + }; + return CompletedDocsWalker; +}(Lint.ProgramAwareRuleWalker)); +CompletedDocsWalker.modifierAliases = { + export: "exported", +}; +var _a, _b, _c, _d, _e, _f, _g; |