Skip to content

Commit

Permalink
Profession 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Jan 12, 2022
1 parent 1926ce3 commit 55c4b14
Show file tree
Hide file tree
Showing 9 changed files with 444 additions and 418 deletions.
13 changes: 6 additions & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
# EditorConfig: http://EditorConfig.org
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true

[*.{js,d.ts,ts}]
charset = utf-8
trim_trailing_whitespace = true
indent_style = space
indent_size = 4

# 2 space indentation
[*.yaml, *.yml]
[package.json,*.yaml]
indent_style = space
indent_size = 2
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Global
node_modules/
coverage

# OS Generated
.DS_Store*
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a name="2.1.0"></a>
# [2.1.0](https://github.com/faker-javascript/profession) (2022-01-12)
* Added xo, tsd, c8.
* Improved tests.

<a name="2.0.1"></a>
# [2.0.1](https://github.com/faker-javascript/profession) (2022-01-10)
* GitHub docs updates.
Expand Down
5 changes: 5 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
interface Options {
rank?: boolean;
locale?: string;
}
export default function profession(options?: Options): string;
Loading

0 comments on commit 55c4b14

Please sign in to comment.