-
-
Notifications
You must be signed in to change notification settings - Fork 536
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fixes tests on Windows using Unix-style path (#1420)
* chore: allows longer commit body Changes the commitlint configuration to allow commit bodies of any length. * chore: fixes tests on Windows using Unix-style path Fixes a test passing a Unix-style path to child_process.exec which failed on Windows by wrapping it in `path.resolve`. Fixes a test relying on some internal logic which only took Unix-style paths into account. Co-authored-by: Artem Zakharchenko <[email protected]>
- Loading branch information
1 parent
933a9d6
commit dae755d
Showing
3 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
rules: { | ||
'body-max-line-length': [0, 'always', Infinity], | ||
'footer-max-line-length': [1, 'always'], | ||
}, | ||
} |
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