-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[E4E-0]: Node 22 upgrade; Added examples; Dogfood the config onto its…
…elf; Updated library versions
- Loading branch information
Showing
10 changed files
with
222 additions
and
129 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
/** | ||
* Copyright (c) ACT, Inc. and its affiliates. | ||
* Copyright (c) Encoura, LLC and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
parserPreset: { | ||
parserOpts: { | ||
headerCorrespondence: ['ticket', 'subject'], | ||
headerPattern: /^(\[[A-Z0-9]*-[0-9]*\]):\s(.*)$/, | ||
}, | ||
}, | ||
rules: { | ||
'subject-case': [2, 'always', 'sentence-case'], | ||
'subject-min-length': [2, 'always', 10], | ||
'type-empty': [0, 'never'], | ||
}, | ||
}; |
Oops, something went wrong.