Skip to content

Commit

Permalink
Merge branch 'next' into local/ja/add-street
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored Jun 1, 2023
2 parents 93995de + e4a6bfe commit cadc367
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ module.exports = defineConfig({
{
files: ['src/**/*.ts'],
plugins: ['jsdoc'],
extends: ['plugin:jsdoc/recommended'],
extends: ['plugin:jsdoc/recommended-error'],
rules: {
'jsdoc/no-types': 'error',
'jsdoc/require-param-type': 'off',
Expand Down
4 changes: 2 additions & 2 deletions src/faker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export class Faker {
readonly word: WordModule = new WordModule(this);

// Aliases
/** @deprecated Use {@link location} instead */
/** @deprecated Use {@link Faker#location} instead */
get address(): AddressModule {
deprecated({
deprecated: 'faker.address',
Expand All @@ -162,7 +162,7 @@ export class Faker {
return this.location;
}

/** @deprecated Use {@link person} instead */
/** @deprecated Use {@link Faker#person} instead */
get name(): NameModule {
deprecated({
deprecated: 'faker.name',
Expand Down

0 comments on commit cadc367

Please sign in to comment.