Skip to content

Commit 06ba47b

Browse files
committed
chore: fix @returns => @return in jsdoc
1 parent 62d7535 commit 06ba47b

File tree

11 files changed

+36
-36
lines changed

11 files changed

+36
-36
lines changed

config/eslint/browser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function rules(config = {}) {
4141
);
4242
}
4343

44-
/** @returns {import('eslint').Linter.FlatConfig} */
44+
/** @return {import('eslint').Linter.FlatConfig} */
4545
export function browser(config = {}) {
4646
config.files = Array.isArray(config.files) ? config.files : ['**/*.{js,gjs}'];
4747
const base = ts.browser(config);

config/eslint/diagnostic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as qunit from './qunit.js';
33

44
const QUNIT_BANNED_IMPORTS = ['ember-qunit', 'qunit', 'ember-exam'];
55

6-
/** @returns {import('eslint').Linter.FlatConfig} */
6+
/** @return {import('eslint').Linter.FlatConfig} */
77
export function browser(config = {}) {
88
const base = qunit.ember(config);
99
base.rules = Object.assign(

config/eslint/node.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import nodePlugin from 'eslint-plugin-n';
33
import globals from 'globals';
44

5-
/** @returns {import('eslint').Linter.FlatConfig} */
5+
/** @return {import('eslint').Linter.FlatConfig} */
66
export function cjs(config) {
77
const result = {
88
files: [
@@ -62,7 +62,7 @@ export function cjs(config) {
6262
return finalConfig;
6363
}
6464

65-
/** @returns {import('eslint').Linter.FlatConfig} */
65+
/** @return {import('eslint').Linter.FlatConfig} */
6666
export function esm(config) {
6767
const result = {
6868
files: [

config/eslint/qunit.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function plugins() {
2424
return { qunit: lintQUnit };
2525
}
2626

27-
/** @returns {import('eslint').Linter.FlatConfig} */
27+
/** @return {import('eslint').Linter.FlatConfig} */
2828
export function ember(config = {}) {
2929
config.allowedImports = Array.isArray(config.allowedImports)
3030
? config.allowedImports.concat(QUNIT_IMPORTS)
@@ -41,7 +41,7 @@ export function ember(config = {}) {
4141
};
4242
}
4343

44-
/** @returns {import('eslint').Linter.FlatConfig} */
44+
/** @return {import('eslint').Linter.FlatConfig} */
4545
export function node(config = {}) {
4646
config.allowedImports = Array.isArray(config.allowedImports) ? config.allowedImports.concat(['qunit']) : ['qunit'];
4747

config/eslint/typescript.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import globals from 'globals';
66
import noop from 'ember-eslint-parser/noop';
77
import emberEslintParser from 'ember-eslint-parser';
88

9-
/** @returns {import('eslint').Linter.FlatConfig} */
9+
/** @return {import('eslint').Linter.FlatConfig} */
1010
function mergeTsConfigs(configArray) {
1111
const merged = {
1212
languageOptions: {},
@@ -122,7 +122,7 @@ export function constructFileGlobs(srcDirs, files) {
122122
return globs;
123123
}
124124

125-
/** @returns {import('eslint').Linter.FlatConfig} */
125+
/** @return {import('eslint').Linter.FlatConfig} */
126126
export function browser(config) {
127127
config.files = config.files ?? ['**/*.ts'];
128128
/** @type {string[]} */
@@ -170,7 +170,7 @@ export function browser(config) {
170170
return lintconfig;
171171
}
172172

173-
/** @returns {import('eslint').Linter.FlatConfig} */
173+
/** @return {import('eslint').Linter.FlatConfig} */
174174
export function node(config) {
175175
config.files = config.files ?? ['**/*.ts'];
176176
/** @type {string[]} */

packages/diagnostic/src/-ember/is-component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export type ComponentLike = object;
1010
* (see https://github.com/emberjs/rfcs/pull/785 for more info).
1111
* @private
1212
* @param {Object} maybeComponent The thing you think might be a component
13-
* @returns {boolean} True if it's a component, false if not
13+
* @return {boolean} True if it's a component, false if not
1414
*/
1515
function isComponent(maybeComponent: object): maybeComponent is ComponentLike {
1616
return !!(getComponentManager as (c: object, v: boolean) => object)(maybeComponent, true);

packages/eslint-plugin-warp-drive/src/rules/no-create-record-rerender.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ function getParentFunction(/** @type {import('eslint').Rule.Node} */ node) {
144144
/**
145145
*
146146
* @param {import('eslint').Rule.Node} maybeParentFunction
147-
* @returns {boolean}
147+
* @return {boolean}
148148
*/
149149
function parentFunctionIsConstructor(maybeParentFunction) {
150150
return 'kind' in maybeParentFunction.parent && maybeParentFunction.parent.kind === 'constructor';
@@ -153,7 +153,7 @@ function parentFunctionIsConstructor(maybeParentFunction) {
153153
/**
154154
*
155155
* @param {import('eslint').Rule.Node} maybeParentFunction
156-
* @returns {boolean}
156+
* @return {boolean}
157157
*/
158158
function parentFunctionIsInit(maybeParentFunction) {
159159
return (

packages/experiments/src/persisted-cache/cache.ts

+17-17
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class PersistedCache implements Cache {
5252
*
5353
* @method put
5454
* @param {StructuredDocument} doc
55-
* @returns {ResourceDocument}
55+
* @return {ResourceDocument}
5656
* @internal
5757
*/
5858
put<T>(doc: StructuredDocument<T> | { content: T }): ResourceDocument {
@@ -96,7 +96,7 @@ export class PersistedCache implements Cache {
9696
* @method patch
9797
* @internal
9898
* @param op the operation to perform
99-
* @returns {void}
99+
* @return {void}
100100
*/
101101
patch(op: Operation): void {
102102
this._cache.patch(op);
@@ -144,7 +144,7 @@ export class PersistedCache implements Cache {
144144
* @method peek
145145
* @internal
146146
* @param {StableRecordIdentifier | StableDocumentIdentifier} identifier
147-
* @returns {ResourceDocument | ResourceBlob | null} the known resource data
147+
* @return {ResourceDocument | ResourceBlob | null} the known resource data
148148
*/
149149
peek<T = unknown>(identifier: StableRecordIdentifier<TypeFromInstanceOrString<T>>): T | null;
150150
peek(identifier: StableDocumentIdentifier): ResourceDocument | null;
@@ -158,7 +158,7 @@ export class PersistedCache implements Cache {
158158
*
159159
* @method peekRequest
160160
* @param {StableDocumentIdentifier}
161-
* @returns {StableDocumentIdentifier | null}
161+
* @return {StableDocumentIdentifier | null}
162162
* @internal
163163
*/
164164
peekRequest(identifier: StableDocumentIdentifier): StructuredDocument<ResourceDocument> | null {
@@ -173,7 +173,7 @@ export class PersistedCache implements Cache {
173173
* @param identifier
174174
* @param data
175175
* @param hasRecord
176-
* @returns {void | string[]} if `hasRecord` is true then calculated key changes should be returned
176+
* @return {void | string[]} if `hasRecord` is true then calculated key changes should be returned
177177
*/
178178
upsert(identifier: StableRecordIdentifier, data: ResourceBlob, hasRecord: boolean): void | string[] {
179179
return this._cache.upsert(identifier, data, hasRecord);
@@ -191,7 +191,7 @@ export class PersistedCache implements Cache {
191191
*
192192
* @method fork
193193
* @internal
194-
* @returns Promise<Cache>
194+
* @return Promise<Cache>
195195
*/
196196
fork(): Promise<Cache> {
197197
return this._cache.fork();
@@ -207,7 +207,7 @@ export class PersistedCache implements Cache {
207207
* @method merge
208208
* @param {Cache} cache
209209
* @internal
210-
* @returns Promise<void>
210+
* @return Promise<void>
211211
*/
212212
merge(cache: Cache): Promise<void> {
213213
return this._cache.merge(cache);
@@ -259,7 +259,7 @@ export class PersistedCache implements Cache {
259259
* via `cache.hydrate`.
260260
*
261261
* @method dump
262-
* @returns {Promise<ReadableStream>}
262+
* @return {Promise<ReadableStream>}
263263
* @internal
264264
*/
265265
dump(): Promise<ReadableStream<unknown>> {
@@ -280,7 +280,7 @@ export class PersistedCache implements Cache {
280280
*
281281
* @method hydrate
282282
* @param {ReadableStream} stream
283-
* @returns {Promise<void>}
283+
* @return {Promise<void>}
284284
* @internal
285285
*/
286286
hydrate(stream: ReadableStream<unknown>): Promise<void> {
@@ -368,7 +368,7 @@ export class PersistedCache implements Cache {
368368
* @internal
369369
* @param identifier
370370
* @param propertyName
371-
* @returns {unknown}
371+
* @return {unknown}
372372
*/
373373
getAttr(identifier: StableRecordIdentifier, field: string): Value | undefined {
374374
return this._cache.getAttr(identifier, field);
@@ -405,7 +405,7 @@ export class PersistedCache implements Cache {
405405
* @method hasChangedAttrs
406406
* @internal
407407
* @param identifier
408-
* @returns {boolean}
408+
* @return {boolean}
409409
*/
410410
hasChangedAttrs(identifier: StableRecordIdentifier): boolean {
411411
return this._cache.hasChangedAttrs(identifier);
@@ -417,7 +417,7 @@ export class PersistedCache implements Cache {
417417
* @method rollbackAttrs
418418
* @internal
419419
* @param identifier
420-
* @returns the names of attributes that were restored
420+
* @return the names of attributes that were restored
421421
*/
422422
rollbackAttrs(identifier: StableRecordIdentifier): string[] {
423423
return this._cache.rollbackAttrs(identifier);
@@ -492,7 +492,7 @@ export class PersistedCache implements Cache {
492492
* @internal
493493
* @param identifier
494494
* @param propertyName
495-
* @returns resource relationship object
495+
* @return resource relationship object
496496
*/
497497
getRelationship(
498498
identifier: StableRecordIdentifier,
@@ -536,7 +536,7 @@ export class PersistedCache implements Cache {
536536
* @method isEmpty
537537
* @internal
538538
* @param identifier
539-
* @returns {boolean}
539+
* @return {boolean}
540540
*/
541541
isEmpty(identifier: StableRecordIdentifier): boolean {
542542
return this._cache.isEmpty(identifier);
@@ -549,7 +549,7 @@ export class PersistedCache implements Cache {
549549
* @method isNew
550550
* @internal
551551
* @param identifier
552-
* @returns {boolean}
552+
* @return {boolean}
553553
*/
554554
isNew(identifier: StableRecordIdentifier): boolean {
555555
return this._cache.isNew(identifier);
@@ -562,7 +562,7 @@ export class PersistedCache implements Cache {
562562
* @method isDeleted
563563
* @internal
564564
* @param identifier
565-
* @returns {boolean}
565+
* @return {boolean}
566566
*/
567567
isDeleted(identifier: StableRecordIdentifier): boolean {
568568
return this._cache.isDeleted(identifier);
@@ -575,7 +575,7 @@ export class PersistedCache implements Cache {
575575
* @method isDeletionCommitted
576576
* @internal
577577
* @param identifier
578-
* @returns {boolean}
578+
* @return {boolean}
579579
*/
580580
isDeletionCommitted(identifier: StableRecordIdentifier): boolean {
581581
return this._cache.isDeletionCommitted(identifier);

packages/json-api/src/-private/cache.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,7 @@ export default class JSONAPICache implements Cache {
13031303
* @method hasChangedAttrs
13041304
* @public
13051305
* @param identifier
1306-
* @returns {boolean}
1306+
* @return {boolean}
13071307
*/
13081308
hasChangedAttrs(identifier: StableRecordIdentifier): boolean {
13091309
const cached = this.__peek(identifier, true);

packages/store/src/-private/record-arrays/native-proxy-type-fix.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ interface ProxyHandler<T extends object> {
2525
/**
2626
* A trap for `Object.defineProperty()`.
2727
* @param target The original object which is being proxied.
28-
* @returns A `Boolean` indicating whether or not the property has been defined.
28+
* @return A `Boolean` indicating whether or not the property has been defined.
2929
* @internal
3030
*/
3131
defineProperty?(target: T, property: string | symbol, attributes: PropertyDescriptor): boolean;
@@ -34,7 +34,7 @@ interface ProxyHandler<T extends object> {
3434
* A trap for the `delete` operator.
3535
* @param target The original object which is being proxied.
3636
* @param p The name or `Symbol` of the property to delete.
37-
* @returns A `Boolean` indicating whether or not the property was deleted.
37+
* @return A `Boolean` indicating whether or not the property was deleted.
3838
* @internal
3939
*/
4040
deleteProperty?(target: T, p: string | symbol): boolean;
@@ -97,7 +97,7 @@ interface ProxyHandler<T extends object> {
9797
* @param target The original object which is being proxied.
9898
* @param p The name or `Symbol` of the property to set.
9999
* @param receiver The object to which the assignment was originally directed.
100-
* @returns A `Boolean` indicating whether or not the property was set.
100+
* @return A `Boolean` indicating whether or not the property was set.
101101
* @internal
102102
*/
103103
set?(target: T, p: string | symbol, newValue: any, receiver: any): boolean;

packages/store/src/-types/q/schema-service.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export interface SchemaService {
137137
* @method transformation
138138
* @public
139139
* @param {TransformableField|{ type: string }} field
140-
* @returns {Transformation}
140+
* @return {Transformation}
141141
*/
142142
transformation(field: GenericField | ObjectField | ArrayField | { type: string }): Transformation;
143143

@@ -148,7 +148,7 @@ export interface SchemaService {
148148
* @method hashFn
149149
* @public
150150
* @param {HashField|{ type: string }} field
151-
* @returns {HashFn}
151+
* @return {HashFn}
152152
*/
153153
hashFn(field: HashField | { type: string }): HashFn;
154154

@@ -159,7 +159,7 @@ export interface SchemaService {
159159
* @method derivation
160160
* @public
161161
* @param {DerivedField|{ type: string }} field
162-
* @returns {Derivation}
162+
* @return {Derivation}
163163
*/
164164
derivation(field: DerivedField | { type: string }): Derivation;
165165

0 commit comments

Comments
 (0)