-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/typescript_conversion'
# Conflicts: # bin/bump.js # lib/index.js # test/specs/commit.spec.js
- Loading branch information
Showing
67 changed files
with
5,877 additions
and
1,927 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Git attributes | ||
# https://git-scm.com/docs/gitattributes | ||
# https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes | ||
|
||
# Normalize line endings for all files that git determines to be text. | ||
# https://git-scm.com/docs/gitattributes#gitattributes-Settostringvalueauto | ||
* text=auto | ||
|
||
# Normalize line endings to LF on checkin, and do NOT convert to CRLF when checking-out on Windows. | ||
# https://git-scm.com/docs/gitattributes#gitattributes-Settostringvaluelf | ||
*.txt text eol=lf | ||
*.html text eol=lf | ||
*.md text eol=lf | ||
*.css text eol=lf | ||
*.scss text eol=lf | ||
*.map text eol=lf | ||
*.js text eol=lf | ||
*.jsx text eol=lf | ||
*.ts text eol=lf | ||
*.tsx text eol=lf | ||
*.json text eol=lf | ||
*.yml text eol=lf | ||
*.yaml text eol=lf | ||
*.xml text eol=lf | ||
*.svg text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,9 @@ pids | |
# Dependencies | ||
node_modules | ||
|
||
# Build output | ||
/lib | ||
|
||
# Test output | ||
/.nyc_output | ||
/coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Mocha options | ||
# https://mochajs.org/#configuring-mocha-nodejs | ||
# https://github.com/mochajs/mocha/blob/master/example/config/.mocharc.yml | ||
|
||
spec: | ||
- test/fixtures/setup-mocks.js | ||
- test/fixtures/mocha-hooks.js | ||
- test/specs/**/*.spec.js | ||
|
||
bail: true | ||
timeout: 10000 | ||
slow: 2000 | ||
retries: 2 | ||
recursive: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.