Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
91 additions
and
40 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
@@ -0,0 +1,49 @@ | ||
const WAITING_FOR_COMMUNITY = 'waiting-for: community'; | ||
const WAITING_FOR_AUTHOR = 'waiting-for: author'; | ||
const WAITING_FOR_HELP = 'waiting-for: help'; | ||
|
||
const DIFFICULTY_EASY = 'difficulty: easy'; | ||
const DIFFICULTY_NORMAL = 'difficulty: normal'; | ||
const DIFFICULTY_HARD = 'difficulty: hard'; | ||
|
||
const BUG = 'bug'; | ||
const NEW_FEATURE = 'new-feature'; | ||
const PENDING = 'pending'; | ||
const EN = 'en'; | ||
const INVALID = 'invalid'; | ||
const RESOLVED = 'resolved'; | ||
const HOWTO = 'howto'; | ||
const INACTIVE = 'inactive'; | ||
const MISSING_DEMO = 'missing-demo'; | ||
|
||
const PRIORITY_HIGH = 'priority: high'; | ||
|
||
const PR_AWAITING_REVIEW = 'PR: awaiting review'; | ||
const PR_REVISION_NEEDED = 'PR: revision needed'; | ||
const PR_AWAITING_DOC = 'PR: awaiting doc'; | ||
const PR_AUTHOR_IS_COMMITTER = 'PR: author is committer'; | ||
const PR_FIRST_TIME_CONTRIBUTOR = 'PR: first-time contributor'; | ||
|
||
module.exports = { | ||
WAITING_FOR_AUTHOR, | ||
WAITING_FOR_COMMUNITY, | ||
WAITING_FOR_HELP, | ||
DIFFICULTY_EASY, | ||
DIFFICULTY_NORMAL, | ||
DIFFICULTY_HARD, | ||
BUG, | ||
NEW_FEATURE, | ||
PENDING, | ||
EN, | ||
INVALID, | ||
RESOLVED, | ||
HOWTO, | ||
INACTIVE, | ||
MISSING_DEMO, | ||
PRIORITY_HIGH, | ||
PR_AWAITING_REVIEW, | ||
PR_REVISION_NEEDED, | ||
PR_AWAITING_DOC, | ||
PR_AUTHOR_IS_COMMITTER, | ||
PR_FIRST_TIME_CONTRIBUTOR | ||
}; |
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
@@ -18,4 +18,4 @@ module.exports = { | ||
removeCodeAndComment, | ||
removeHTMLComment, | ||
replaceAll | ||
} | ||
}; |