Skip to content

Commit

Permalink
Merge branch 'next' into infra/unicorn/switch-case-braces
Browse files Browse the repository at this point in the history
  • Loading branch information
xDivisionByZerox authored Mar 6, 2024
2 parents dc118cd + ade91fd commit 711e7bf
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions src/modules/git/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export class GitModule extends ModuleBase {
* Generates a random commit entry as printed by `git log`.
*
* @param options Options for the commit entry.
* @param options.merge Set to `true` to generate a merge message line.
* @param options.eol Choose the end of line character to use. Defaults to 'CRLF'.
* @param options.merge Whether to generate a merge message line. Defaults to 20% `true` and 80% `false`.
* @param options.eol Choose the end of line character to use. Defaults to `'CRLF'`.
* 'LF' = '\n',
* 'CRLF' = '\r\n'
* @param options.refDate The date to use as reference point for the commit. Defaults to `new Date()`.
Expand Down Expand Up @@ -192,7 +192,7 @@ export class GitModule extends ModuleBase {
* - 8 for GitLab
*
* @param options Options for the commit sha.
* @param options.length The length of the commit sha. Defaults to 40.
* @param options.length The length of the commit sha. Defaults to `40`.
*
* @example
* faker.git.commitSha() // '2c6e3880fd94ddb7ef72d34e683cdc0c47bec6e6'
Expand Down
30 changes: 15 additions & 15 deletions src/modules/image/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ export class ImageModule extends ModuleBase {
* Generates a random image url.
*
* @param options Options for generating a URL for an image.
* @param options.width The width of the image. Defaults to random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to random integer between `1` and `3999`.
* @param options.width The width of the image. Defaults to a random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to a random integer between `1` and `3999`.
*
* @example
* faker.image.url() // 'https://loremflickr.com/640/480?lock=1234'
Expand Down Expand Up @@ -109,8 +109,8 @@ export class ImageModule extends ModuleBase {
* Generates a random image url provided via https://loremflickr.com.
*
* @param options Options for generating a URL for an image.
* @param options.width The width of the image. Defaults to random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to random integer between `1` and `3999`.
* @param options.width The width of the image. Defaults to a random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to a random integer between `1` and `3999`.
* @param options.category Category to use for the image.
*
* @example
Expand Down Expand Up @@ -156,10 +156,10 @@ export class ImageModule extends ModuleBase {
* Generates a random image url provided via https://picsum.photos.
*
* @param options Options for generating a URL for an image.
* @param options.width The width of the image. Defaults to random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to random integer between `1` and `3999`.
* @param options.width The width of the image. Defaults to a random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to a random integer between `1` and `3999`.
* @param options.grayscale Whether the image should be grayscale. Defaults to a random boolean value.
* @param options.blur Whether the image should be blurred. `0` disables the blur. Defaults to a random integer from `0` to `10`.
* @param options.blur Whether the image should be blurred. `0` disables the blur. Defaults to a random integer between `0` and `10`.
*
* @example
* faker.image.urlPicsumPhotos() // 'https://picsum.photos/seed/NWbJM2B/640/480'
Expand Down Expand Up @@ -235,12 +235,12 @@ export class ImageModule extends ModuleBase {
* Generates a random image url provided via https://via.placeholder.com/.
*
* @param options Options for generating a URL for an image.
* @param options.width The width of the image. Defaults to random number between 1 and 3999.
* @param options.height The height of the image. Defaults to random number between 1 and 3999.
* @param options.backgroundColor The background color of the image. Defaults to random hex color.
* @param options.textColor The text color of the image. Defaults to random hex color.
* @param options.format The format of the image. Defaults to random format.
* @param options.text The text to display on the image. Defaults to string.
* @param options.width The width of the image. Defaults to a random number between 1 and 3999.
* @param options.height The height of the image. Defaults to a random number between 1 and 3999.
* @param options.backgroundColor The background color of the image. Defaults to a random hex color.
* @param options.textColor The text color of the image. Defaults to a random hex color.
* @param options.format The format of the image. Defaults to a random format.
* @param options.text The text to display on the image. Defaults to a random string.
*
* @example
* faker.image.urlPlaceholder() // 'https://via.placeholder.com/150x180/FF0000/FFFFFF.webp?text=lorem'
Expand Down Expand Up @@ -328,8 +328,8 @@ export class ImageModule extends ModuleBase {
* Generates a random data uri containing an URL-encoded SVG image or a Base64-encoded SVG image.
*
* @param options Options for generating a data uri.
* @param options.width The width of the image. Defaults to random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to random integer between `1` and `3999`.
* @param options.width The width of the image. Defaults to a random integer between `1` and `3999`.
* @param options.height The height of the image. Defaults to a random integer between `1` and `3999`.
* @param options.color The color of the image. Must be a color supported by svg. Defaults to a random color.
* @param options.type The type of the image. Defaults to a random type.
*
Expand Down
2 changes: 1 addition & 1 deletion src/modules/word/filter-word-list-by-length.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ string, // Parameters<filterWordListByLength>[0]['strategy']
* @param options The options to provide.
* @param options.wordList A list of words to filter.
* @param options.length The exact or the range of lengths the words should have.
* @param options.strategy The strategy to apply when no words with a matching length are found. Defaults to 'any-length'.
* @param options.strategy The strategy to apply when no words with a matching length are found. Defaults to `'any-length'`.
*
* Available error handling strategies:
*
Expand Down

0 comments on commit 711e7bf

Please sign in to comment.