Skip to content

Commit 73cab09

Browse files
author
Andy Hanson
committed
Enable jsdoc-format lint rule
1 parent 9c9b659 commit 73cab09

37 files changed

+1400
-1399
lines changed

src/compiler/checker.ts

+85-84
Large diffs are not rendered by default.

src/compiler/commandLineParser.ts

+13-13
Original file line numberDiff line numberDiff line change
@@ -860,9 +860,9 @@ namespace ts {
860860
}
861861

862862
/**
863-
* Read tsconfig.json file
864-
* @param fileName The path to the config file
865-
*/
863+
* Read tsconfig.json file
864+
* @param fileName The path to the config file
865+
*/
866866
export function readConfigFile(fileName: string, readFile: (path: string) => string): { config?: any; error?: Diagnostic } {
867867
let text = "";
868868
try {
@@ -875,10 +875,10 @@ namespace ts {
875875
}
876876

877877
/**
878-
* Parse the text of the tsconfig.json file
879-
* @param fileName The path to the config file
880-
* @param jsonText The text of the config file
881-
*/
878+
* Parse the text of the tsconfig.json file
879+
* @param fileName The path to the config file
880+
* @param jsonText The text of the config file
881+
*/
882882
export function parseConfigFileTextToJson(fileName: string, jsonText: string, stripComments = true): { config?: any; error?: Diagnostic } {
883883
try {
884884
const jsonTextToParse = stripComments ? removeComments(jsonText) : jsonText;
@@ -1083,12 +1083,12 @@ namespace ts {
10831083
}
10841084

10851085
/**
1086-
* Parse the contents of a config file (tsconfig.json).
1087-
* @param json The contents of the config file to parse
1088-
* @param host Instance of ParseConfigHost used to enumerate files in folder.
1089-
* @param basePath A root directory to resolve relative path entries in the config
1090-
* file to. e.g. outDir
1091-
*/
1086+
* Parse the contents of a config file (tsconfig.json).
1087+
* @param json The contents of the config file to parse
1088+
* @param host Instance of ParseConfigHost used to enumerate files in folder.
1089+
* @param basePath A root directory to resolve relative path entries in the config
1090+
* file to. e.g. outDir
1091+
*/
10921092
export function parseJsonConfigFileContent(json: any, host: ParseConfigHost, basePath: string, existingOptions: CompilerOptions = {}, configFileName?: string, resolutionStack: Path[] = [], extraFileExtensions: JsFileExtensionInfo[] = []): ParsedCommandLine {
10931093
const errors: Diagnostic[] = [];
10941094
basePath = normalizeSlashes(basePath);

src/compiler/comments.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ namespace ts {
411411
* Determine if the given comment is a triple-slash
412412
*
413413
* @return true if the comment is a triple-slash comment else false
414-
**/
414+
*/
415415
function isTripleSlashComment(commentPos: number, commentEnd: number) {
416416
// Verify this is /// comment, but do the regexp match only when we first can find /// in the comment text
417417
// so that we don't end up computing comment string and doing match for all // comments

src/compiler/core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ namespace ts {
13581358

13591359
/**
13601360
* Returns length of path root (i.e. length of "/", "x:/", "//server/share/, file:///user/files")
1361-
*/
1361+
*/
13621362
export function getRootLength(path: string): number {
13631363
if (path.charCodeAt(0) === CharacterCodes.slash) {
13641364
if (path.charCodeAt(1) !== CharacterCodes.slash) return 1;

src/compiler/moduleNameResolver.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -249,13 +249,13 @@ namespace ts {
249249
}
250250

251251
/**
252-
* Given a set of options, returns the set of type directive names
253-
* that should be included for this program automatically.
254-
* This list could either come from the config file,
255-
* or from enumerating the types root + initial secondary types lookup location.
256-
* More type directives might appear in the program later as a result of loading actual source files;
257-
* this list is only the set of defaults that are implicitly included.
258-
*/
252+
* Given a set of options, returns the set of type directive names
253+
* that should be included for this program automatically.
254+
* This list could either come from the config file,
255+
* or from enumerating the types root + initial secondary types lookup location.
256+
* More type directives might appear in the program later as a result of loading actual source files;
257+
* this list is only the set of defaults that are implicitly included.
258+
*/
259259
export function getAutomaticTypeDirectiveNames(options: CompilerOptions, host: ModuleResolutionHost): string[] {
260260
// Use explicit type list from tsconfig.json
261261
if (options.types) {

src/compiler/transformers/destructuring.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,8 @@ namespace ts {
490490
};
491491

492492
/** Given value: o, propName: p, pattern: { a, b, ...p } from the original statement
493-
* `{ a, b, ...p } = o`, create `p = __rest(o, ["a", "b"]);`*/
493+
* `{ a, b, ...p } = o`, create `p = __rest(o, ["a", "b"]);`
494+
*/
494495
function createRestCall(context: TransformationContext, value: Expression, elements: BindingOrAssignmentElement[], computedTempVariables: Expression[], location: TextRange): Expression {
495496
context.requestEmitHelper(restHelper);
496497
const propertyNames: Expression[] = [];

src/compiler/transformers/es2015.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ namespace ts {
315315
* Sets the `HierarchyFacts` for this node prior to visiting this node's subtree, returning the facts set prior to modification.
316316
* @param excludeFacts The existing `HierarchyFacts` to reset before visiting the subtree.
317317
* @param includeFacts The new `HierarchyFacts` to set before visiting the subtree.
318-
**/
318+
*/
319319
function enterSubtree(excludeFacts: HierarchyFacts, includeFacts: HierarchyFacts) {
320320
const ancestorFacts = hierarchyFacts;
321321
hierarchyFacts = (hierarchyFacts & ~excludeFacts | includeFacts) & HierarchyFacts.AncestorFactsMask;
@@ -328,7 +328,7 @@ namespace ts {
328328
* @param ancestorFacts The `HierarchyFacts` of the ancestor to restore after visiting the subtree.
329329
* @param excludeFacts The existing `HierarchyFacts` of the subtree that should not be propagated.
330330
* @param includeFacts The new `HierarchyFacts` of the subtree that should be propagated.
331-
**/
331+
*/
332332
function exitSubtree(ancestorFacts: HierarchyFacts, excludeFacts: HierarchyFacts, includeFacts: HierarchyFacts) {
333333
hierarchyFacts = (hierarchyFacts & ~excludeFacts | includeFacts) & HierarchyFacts.SubtreeFactsMask | ancestorFacts;
334334
}

src/compiler/types.ts

+10-11
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ namespace ts {
819819
body?: FunctionBody;
820820
}
821821

822-
/** For when we encounter a semicolon in a class declaration. ES6 allows these as class elements.*/
822+
/** For when we encounter a semicolon in a class declaration. ES6 allows these as class elements. */
823823
export interface SemicolonClassElement extends ClassElement {
824824
kind: SyntaxKind.SemicolonClassElement;
825825
parent?: ClassDeclaration | ClassExpression;
@@ -1386,11 +1386,11 @@ namespace ts {
13861386
}
13871387

13881388
/**
1389-
* This interface is a base interface for ObjectLiteralExpression and JSXAttributes to extend from. JSXAttributes is similar to
1390-
* ObjectLiteralExpression in that it contains array of properties; however, JSXAttributes' properties can only be
1391-
* JSXAttribute or JSXSpreadAttribute. ObjectLiteralExpression, on the other hand, can only have properties of type
1392-
* ObjectLiteralElement (e.g. PropertyAssignment, ShorthandPropertyAssignment etc.)
1393-
**/
1389+
* This interface is a base interface for ObjectLiteralExpression and JSXAttributes to extend from. JSXAttributes is similar to
1390+
* ObjectLiteralExpression in that it contains array of properties; however, JSXAttributes' properties can only be
1391+
* JSXAttribute or JSXSpreadAttribute. ObjectLiteralExpression, on the other hand, can only have properties of type
1392+
* ObjectLiteralElement (e.g. PropertyAssignment, ShorthandPropertyAssignment etc.)
1393+
*/
13941394
export interface ObjectLiteralExpressionBase<T extends ObjectLiteralElement> extends PrimaryExpression, Declaration {
13951395
properties: NodeArray<T>;
13961396
}
@@ -2319,9 +2319,9 @@ namespace ts {
23192319
readDirectory(rootDir: string, extensions: string[], excludes: string[], includes: string[]): string[];
23202320

23212321
/**
2322-
* Gets a value indicating whether the specified path exists and is a file.
2323-
* @param path The path to test.
2324-
*/
2322+
* Gets a value indicating whether the specified path exists and is a file.
2323+
* @param path The path to test.
2324+
*/
23252325
fileExists(path: string): boolean;
23262326

23272327
readFile(path: string): string;
@@ -2669,8 +2669,7 @@ namespace ts {
26692669
errorModuleName?: string; // If the symbol is not visible from module, module's name
26702670
}
26712671

2672-
/** Indicates how to serialize the name for a TypeReferenceNode when emitting decorator
2673-
* metadata */
2672+
/** Indicates how to serialize the name for a TypeReferenceNode when emitting decorator metadata */
26742673
/* @internal */
26752674
export enum TypeReferenceSerializationKind {
26762675
Unknown, // The TypeReferenceNode could not be resolved. The type name

src/compiler/utilities.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -1095,13 +1095,13 @@ namespace ts {
10951095
}
10961096

10971097
/**
1098-
* Given an super call/property node, returns the closest node where
1099-
* - a super call/property access is legal in the node and not legal in the parent node the node.
1100-
* i.e. super call is legal in constructor but not legal in the class body.
1101-
* - the container is an arrow function (so caller might need to call getSuperContainer again in case it needs to climb higher)
1102-
* - a super call/property is definitely illegal in the container (but might be legal in some subnode)
1103-
* i.e. super property access is illegal in function declaration but can be legal in the statement list
1104-
*/
1098+
* Given an super call/property node, returns the closest node where
1099+
* - a super call/property access is legal in the node and not legal in the parent node the node.
1100+
* i.e. super call is legal in constructor but not legal in the class body.
1101+
* - the container is an arrow function (so caller might need to call getSuperContainer again in case it needs to climb higher)
1102+
* - a super call/property is definitely illegal in the container (but might be legal in some subnode)
1103+
* i.e. super property access is illegal in function declaration but can be legal in the statement list
1104+
*/
11051105
export function getSuperContainer(node: Node, stopOnFunctions: boolean): Node {
11061106
while (true) {
11071107
node = node.parent;
@@ -4554,9 +4554,9 @@ namespace ts {
45544554
}
45554555

45564556
/**
4557-
* Checks to see if the locale is in the appropriate format,
4558-
* and if it is, attempts to set the appropriate language.
4559-
*/
4557+
* Checks to see if the locale is in the appropriate format,
4558+
* and if it is, attempts to set the appropriate language.
4559+
*/
45604560
export function validateLocaleAndSetLanguage(
45614561
locale: string,
45624562
sys: { getExecutingFilePath(): string, resolvePath(path: string): string, fileExists(fileName: string): boolean, readFile(fileName: string): string },

src/harness/fourslash.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2205,7 +2205,7 @@ namespace FourSlash {
22052205
/**
22062206
* Applies fixes for the errors in fileName and compares the results to
22072207
* expectedContents after all fixes have been applied.
2208-
2208+
*
22092209
* Note: applying one codefix may generate another (eg: remove duplicate implements
22102210
* may generate an extends -> interface conversion fix).
22112211
* @param expectedContents The contents of the file after the fixes are applied.

src/harness/harnessLanguageService.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,9 @@ namespace Harness.LanguageService {
169169
}
170170

171171
/**
172-
* @param line 0 based index
173-
* @param col 0 based index
174-
*/
172+
* @param line 0 based index
173+
* @param col 0 based index
174+
*/
175175
public positionToLineAndCharacter(fileName: string, position: number): ts.LineAndCharacter {
176176
const script: ScriptInfo = this.getScriptInfo(fileName);
177177
assert.isOk(script);

src/harness/unittests/tsserverProjectSystem.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -548,11 +548,11 @@ namespace ts.projectSystem {
548548
}
549549

550550
/**
551-
* Test server cancellation token used to mock host token cancellation requests.
552-
* The cancelAfterRequest constructor param specifies how many isCancellationRequested() calls
553-
* should be made before canceling the token. The id of the request to cancel should be set with
554-
* setRequestToCancel();
555-
*/
551+
* Test server cancellation token used to mock host token cancellation requests.
552+
* The cancelAfterRequest constructor param specifies how many isCancellationRequested() calls
553+
* should be made before canceling the token. The id of the request to cancel should be set with
554+
* setRequestToCancel();
555+
*/
556556
export class TestServerCancellationToken implements server.ServerCancellationToken {
557557
private currentId = -1;
558558
private requestToCancel = -1;

src/lib/dom.iterable.d.ts

+20-20
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@ interface FormData {
2323

2424
interface NodeList {
2525
/**
26-
* Returns an array of key, value pairs for every entry in the list
27-
*/
26+
* Returns an array of key, value pairs for every entry in the list
27+
*/
2828
entries(): IterableIterator<[number, Node]>;
2929
/**
30-
* Performs the specified action for each node in an list.
31-
* @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
32-
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
33-
*/
30+
* Performs the specified action for each node in an list.
31+
* @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
32+
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
33+
*/
3434
forEach(callbackfn: (value: Node, index: number, listObj: NodeList) => void, thisArg?: any): void;
3535
/**
36-
* Returns an list of keys in the list
37-
*/
36+
* Returns an list of keys in the list
37+
*/
3838
keys(): IterableIterator<number>;
3939

4040
/**
41-
* Returns an list of values in the list
42-
*/
41+
* Returns an list of values in the list
42+
*/
4343
values(): IterableIterator<Node>;
4444

4545

@@ -49,23 +49,23 @@ interface NodeList {
4949
interface NodeListOf<TNode extends Node> {
5050

5151
/**
52-
* Returns an array of key, value pairs for every entry in the list
53-
*/
52+
* Returns an array of key, value pairs for every entry in the list
53+
*/
5454
entries(): IterableIterator<[number, TNode]>;
5555

5656
/**
57-
* Performs the specified action for each node in an list.
58-
* @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
59-
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
60-
*/
57+
* Performs the specified action for each node in an list.
58+
* @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
59+
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
60+
*/
6161
forEach(callbackfn: (value: TNode, index: number, listObj: NodeListOf<TNode>) => void, thisArg?: any): void;
6262
/**
63-
* Returns an list of keys in the list
64-
*/
63+
* Returns an list of keys in the list
64+
*/
6565
keys(): IterableIterator<number>;
6666
/**
67-
* Returns an list of values in the list
68-
*/
67+
* Returns an list of values in the list
68+
*/
6969
values(): IterableIterator<TNode>;
7070

7171
[Symbol.iterator](): IterableIterator<TNode>;

0 commit comments

Comments
 (0)