This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 889
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 'no-redundant-jsdoc' rule (#2754)
- Loading branch information
1 parent
79165d5
commit 10258d4
Showing
6 changed files
with
177 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
/** | ||
* @license | ||
* Copyright 2017 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. | ||
*/ | ||
|
||
import { getJsDoc } from "tsutils"; | ||
import * as ts from "typescript"; | ||
|
||
import * as Lint from "../index"; | ||
|
||
export class Rule extends Lint.Rules.AbstractRule { | ||
/* tslint:disable:object-literal-sort-keys */ | ||
public static metadata: Lint.IRuleMetadata = { | ||
ruleName: "no-redundant-jsdoc", | ||
description: "Forbids JSDoc which duplicates TypeScript functionality.", | ||
optionsDescription: "Not configurable.", | ||
options: null, | ||
optionExamples: [true], | ||
type: "style", | ||
typescriptOnly: true, | ||
}; | ||
/* tslint:enable:object-literal-sort-keys */ | ||
|
||
public static FAILURE_STRING_REDUNDANT_TYPE = | ||
"Type annotation in JSDoc is redundant in TypeScript code."; | ||
public static FAILURE_STRING_REDUNDANT_TAG(tagName: string): string { | ||
return `JSDoc tag '@${tagName}' is redundant in TypeScript code.`; | ||
} | ||
public static FAILURE_STRING_NO_COMMENT(tagName: string): string { | ||
return `'@${tagName}' is redundant in TypeScript code if it has no description.`; | ||
} | ||
|
||
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] { | ||
return this.applyWithFunction(sourceFile, walk); | ||
} | ||
} | ||
|
||
function walk(ctx: Lint.WalkContext<void>): void { | ||
const { sourceFile } = ctx; | ||
ts.forEachChild(sourceFile, function cb(node) { | ||
for (const { tags } of getJsDoc(node, sourceFile)) { | ||
if (tags !== undefined) { | ||
for (const tag of tags) { | ||
checkTag(tag); | ||
} | ||
} | ||
} | ||
ts.forEachChild(node, cb); | ||
}); | ||
|
||
function checkTag(tag: ts.JSDocTag): void { | ||
switch (tag.kind) { | ||
case ts.SyntaxKind.JSDocTag: | ||
if (redundantTags.has(tag.tagName.text)) { | ||
ctx.addFailureAtNode(tag.tagName, Rule.FAILURE_STRING_REDUNDANT_TAG(tag.tagName.text)); | ||
} | ||
break; | ||
|
||
case ts.SyntaxKind.JSDocAugmentsTag: | ||
// OK | ||
break; | ||
|
||
case ts.SyntaxKind.JSDocTemplateTag: | ||
case ts.SyntaxKind.JSDocTypeTag: | ||
case ts.SyntaxKind.JSDocTypedefTag: | ||
case ts.SyntaxKind.JSDocPropertyTag: | ||
// Always redundant | ||
ctx.addFailureAtNode(tag.tagName, Rule.FAILURE_STRING_REDUNDANT_TAG(tag.tagName.text)); | ||
break; | ||
|
||
case ts.SyntaxKind.JSDocReturnTag: | ||
case ts.SyntaxKind.JSDocParameterTag: { | ||
const { typeExpression, comment } = tag as ts.JSDocReturnTag | ts.JSDocParameterTag; | ||
if (typeExpression !== undefined) { | ||
ctx.addFailureAtNode(typeExpression, Rule.FAILURE_STRING_REDUNDANT_TYPE); | ||
} | ||
if (comment === "") { | ||
// Redundant if no documentation | ||
ctx.addFailureAtNode(tag.tagName, Rule.FAILURE_STRING_NO_COMMENT(tag.tagName.text)); | ||
} | ||
break; | ||
} | ||
|
||
default: | ||
throw new Error(`Unexpected tag kind: ${ts.SyntaxKind[tag.kind]}`); | ||
} | ||
} | ||
} | ||
|
||
const redundantTags = new Set([ | ||
"abstract", | ||
"access", | ||
"class", | ||
"constant", | ||
"constructs", | ||
"default", | ||
"enum", | ||
"exports", | ||
"function", | ||
"global", | ||
"implements", | ||
"interface", | ||
"instance", | ||
"member", | ||
"memberof", | ||
"mixes", | ||
"mixin", | ||
"module", | ||
"name", | ||
"namespace", | ||
"override", | ||
"private", | ||
"property", | ||
"protected", | ||
"public", | ||
"readonly", | ||
"requires", | ||
"static", | ||
"this", | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** @typedef {number} T */ | ||
~~~~~~~ [tag % ('typedef')] | ||
|
||
/** @function */ | ||
~~~~~~~~ [tag % ('function')] | ||
function f() {} | ||
|
||
/** @type number */ | ||
~~~~ [tag % ('type')] | ||
const x = 0; | ||
|
||
/** | ||
* @param {number} x Is a number | ||
~~~~~~~~ [type] | ||
* @param y | ||
~~~~~ [param] | ||
* @param {number} z | ||
~~~~~ [param] | ||
~~~~~~~~ [type] | ||
* @returns {number} | ||
~~~~~~~ [returns] | ||
~~~~~~~~ [type] | ||
*/ | ||
declare function g(x: number, y: number, z: number): number; | ||
|
||
/** | ||
* @param x Useful comment | ||
* @returns Useful comment | ||
*/ | ||
declare function h(x: number): number; | ||
|
||
[tag]: JSDoc tag '@%s' is redundant in TypeScript code. | ||
[type]: Type annotation in JSDoc is redundant in TypeScript code. | ||
[param]: '@param' is redundant in TypeScript code if it has no description. | ||
[returns]: '@returns' is redundant in TypeScript code if it has no description. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"rules": { | ||
"no-redundant-jsdoc": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters