This file contains hidden or 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
const JIRA_ISSUE_KEY_PATTERN = | |
/(?<![\w-])(?<project>[A-Z][A-Z0-9_]+)-(?<issue>[1-9][0-9]*)(?![\w-])/ | |
const JIRA_ISSUE_KEYS_PATTERN = | |
/(?<![\w-])(?<project>[A-Z][A-Z0-9_]+)-(?<issues>[1-9][0-9]*(?:_[1-9][0-9]*)*)(?![\w-])/ |
This file contains hidden or 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
/** A parsed JSON value. */ | |
export type json = | |
| string | |
| number | |
| boolean | |
| null | |
| json[] | |
| { [key: string]: json }; | |
/** A JSON stringify-able value. */ |
This file contains hidden or 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
init |