Skip to content

Commit acc665f

Browse files
authored
enforce no wrapIndent for jsdoc comments (#13139)
* enforce no wrapIndent for jsdoc comments * fix linting errors
1 parent be50cec commit acc665f

13 files changed

+351
-349
lines changed

.eslintrc

+3-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@
129129
"jsdoc/require-property-description": "off",
130130
"jsdoc/require-property-name": "off",
131131
"jsdoc/require-property-type": "off",
132-
"jsdoc/require-returns-type": "off",
132+
"jsdoc/require-returns-type": "off"
133+
133134
}
134135
},
135136
{
@@ -160,7 +161,7 @@
160161
"matchingFileName": "src/fake_filename_for_jsdoc_examples",
161162
"rejectExampleCodeRegex": "<script>"
162163
}],
163-
"jsdoc/check-line-alignment": ["error", "any", {"wrapIndent": " "}],
164+
"jsdoc/check-line-alignment": ["error"],
164165
"jsdoc/check-property-names": "error",
165166
"jsdoc/check-types": "error",
166167
"jsdoc/tag-lines": ["error", "any", {"startLines": 1}],

src/geo/lng_lat.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ export class LngLatBounds {
420420
* Returns the bounding box represented as an array.
421421
*
422422
* @returns {Array<Array<number>>} The bounding box represented as an array, consisting of the
423-
* southwest and northeast coordinates of the bounding represented as arrays of numbers.
423+
* southwest and northeast coordinates of the bounding represented as arrays of numbers.
424424
* @example
425425
* const llb = new mapboxgl.LngLatBounds([-73.9876, 40.7661], [-73.9397, 40.8002]);
426426
* llb.toArray(); // = [[-73.9876, 40.7661], [-73.9397, 40.8002]]
@@ -433,7 +433,7 @@ export class LngLatBounds {
433433
* Return the bounding box represented as a string.
434434
*
435435
* @returns {string} The bounding box represents as a string of the format
436-
* `'LngLatBounds(LngLat(lng, lat), LngLat(lng, lat))'`.
436+
* `'LngLatBounds(LngLat(lng, lat), LngLat(lng, lat))'`.
437437
* @example
438438
* const llb = new mapboxgl.LngLatBounds([-73.9876, 40.7661], [-73.9397, 40.8002]);
439439
* llb.toString(); // = "LngLatBounds(LngLat(-73.9876, 40.7661), LngLat(-73.9397, 40.8002))"

src/geo/lng_lat_bounds.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ class LngLatBounds {
221221
* Returns the bounding box represented as an array.
222222
*
223223
* @returns {Array<Array<number>>} The bounding box represented as an array, consisting of the
224-
* southwest and northeast coordinates of the bounding represented as arrays of numbers.
224+
* southwest and northeast coordinates of the bounding represented as arrays of numbers.
225225
* @example
226226
* const llb = new mapboxgl.LngLatBounds([-73.9876, 40.7661], [-73.9397, 40.8002]);
227227
* llb.toArray(); // = [[-73.9876, 40.7661], [-73.9397, 40.8002]]
@@ -234,7 +234,7 @@ class LngLatBounds {
234234
* Return the bounding box represented as a string.
235235
*
236236
* @returns {string} The bounding box represents as a string of the format
237-
* `'LngLatBounds(LngLat(lng, lat), LngLat(lng, lat))'`.
237+
* `'LngLatBounds(LngLat(lng, lat), LngLat(lng, lat))'`.
238238
* @example
239239
* const llb = new mapboxgl.LngLatBounds([-73.9876, 40.7661], [-73.9397, 40.8002]);
240240
* llb.toString(); // = "LngLatBounds(LngLat(-73.9876, 40.7661), LngLat(-73.9397, 40.8002))"

src/index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,9 @@ Debug.extend(exported, {isSafari, getPerformanceMetrics: PerformanceUtils.getPer
297297
* @function supported
298298
* @param {Object} [options]
299299
* @param {boolean} [options.failIfMajorPerformanceCaveat=false] If `true`,
300-
* the function will return `false` if the performance of Mapbox GL JS would
301-
* be dramatically worse than expected (for example, a software WebGL renderer
302-
* would be used).
300+
* the function will return `false` if the performance of Mapbox GL JS would
301+
* be dramatically worse than expected (for example, a software WebGL renderer
302+
* would be used).
303303
* @return {boolean}
304304
* @example
305305
* // Show an alert if the browser does not support Mapbox GL
@@ -317,7 +317,7 @@ Debug.extend(exported, {isSafari, getPerformanceMetrics: PerformanceUtils.getPer
317317
* @param {string} pluginURL URL pointing to the Mapbox RTL text plugin source.
318318
* @param {Function} callback Called with an error argument if there is an error, or no arguments if the plugin loads successfully.
319319
* @param {boolean} lazy If set to `true`, MapboxGL will defer loading the plugin until right-to-left text is encountered, and
320-
* right-to-left text will be rendered only after the plugin finishes loading.
320+
* right-to-left text will be rendered only after the plugin finishes loading.
321321
* @example
322322
* mapboxgl.setRTLTextPlugin('https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-rtl-text/v0.2.0/mapbox-gl-rtl-text.js');
323323
* @see [Example: Add support for right-to-left scripts](https://www.mapbox.com/mapbox-gl-js/example/mapbox-gl-rtl-text/)

src/source/canvas_source.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,9 @@ class CanvasSource extends ImageSource {
184184
* @instance
185185
* @memberof CanvasSource
186186
* @param {Array<Array<number>>} coordinates Four geographical coordinates,
187-
* represented as arrays of longitude and latitude numbers, which define the corners of the canvas.
188-
* The coordinates start at the top left corner of the canvas and proceed in clockwise order.
189-
* They do not have to represent a rectangle.
187+
* represented as arrays of longitude and latitude numbers, which define the corners of the canvas.
188+
* The coordinates start at the top left corner of the canvas and proceed in clockwise order.
189+
* They do not have to represent a rectangle.
190190
* @returns {CanvasSource} Returns itself to allow for method chaining.
191191
*/
192192

src/source/custom_source.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function isRaster(data: any): boolean {
130130
* @param {Object} options Options.
131131
* @param {AbortSignal} options.signal A signal object that communicates when the map cancels the tile loading request.
132132
* @returns {Promise<TextureImage | undefined | null>} The promise that resolves to the tile image data as an `HTMLCanvasElement`, `HTMLImageElement`, `ImageData`, `ImageBitmap` or object with `width`, `height`, and `data`.
133-
* If `loadTile` resolves to `undefined`, a map will render an overscaled parent tile in the tile’s space. If `loadTile` resolves to `null`, a map will render nothing in the tile’s space.
133+
* If `loadTile` resolves to `undefined`, a map will render an overscaled parent tile in the tile’s space. If `loadTile` resolves to `null`, a map will render nothing in the tile’s space.
134134
*/
135135
export type CustomSourceInterface<T> = {
136136
id: string;

src/source/image_source.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -326,9 +326,9 @@ class ImageSource extends Evented implements Source {
326326
* @param {Object} options Options object.
327327
* @param {string} [options.url] Required image URL.
328328
* @param {Array<Array<number>>} [options.coordinates] Four geographical coordinates,
329-
* represented as arrays of longitude and latitude numbers, which define the corners of the image.
330-
* The coordinates start at the top left corner of the image and proceed in clockwise order.
331-
* They do not have to represent a rectangle.
329+
* represented as arrays of longitude and latitude numbers, which define the corners of the image.
330+
* The coordinates start at the top left corner of the image and proceed in clockwise order.
331+
* They do not have to represent a rectangle.
332332
* @returns {ImageSource} Returns itself to allow for method chaining.
333333
* @example
334334
* // Add to an image source to the map with some initial URL and coordinates
@@ -415,9 +415,9 @@ class ImageSource extends Evented implements Source {
415415
* Sets the image's coordinates and re-renders the map.
416416
*
417417
* @param {Array<Array<number>>} coordinates Four geographical coordinates,
418-
* represented as arrays of longitude and latitude numbers, which define the corners of the image.
419-
* The coordinates start at the top left corner of the image and proceed in clockwise order.
420-
* They do not have to represent a rectangle.
418+
* represented as arrays of longitude and latitude numbers, which define the corners of the image.
419+
* The coordinates start at the top left corner of the image and proceed in clockwise order.
420+
* They do not have to represent a rectangle.
421421
* @returns {ImageSource} Returns itself to allow for method chaining.
422422
* @example
423423
* // Add an image source to the map with some initial coordinates

0 commit comments

Comments
 (0)