Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rsstiglitz committed May 30, 2022
1 parent 1859a48 commit 999b189
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/locales/de/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const de: LocaleDefinition = {
lorem,
name: name_,
phone_number,
word
word,
};

export default de;
2 changes: 1 addition & 1 deletion src/locales/de/word/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { WordDefinitions } from '../../..';
import adjective from './adjective';

const word: WordDefinitions = {
adjective
adjective,
};

export default word;
2 changes: 1 addition & 1 deletion src/locales/de_AT/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const de_AT: LocaleDefinition = {
internet,
name: name_,
phone_number,
word
word,
};

export default de_AT;
2 changes: 1 addition & 1 deletion src/locales/de_AT/word/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { WordDefinitions } from '../../..';
import adjective from './adjective';

const word: WordDefinitions = {
adjective
adjective,
};

export default word;

0 comments on commit 999b189

Please sign in to comment.