UNPKG
@elsikora/git-branch-lint
Version:
beta (1.1.2-dev.1)
latest (1.1.2)
1.1.2
1.1.2-dev.1
1.1.1
1.1.1-dev.3
1.1.1-dev.2
1.1.1-dev.1
1.1.0
1.0.1
1.0.1-dev.1
1.0.0
Lint your git branch names
github.com/ElsiKora/Git-Branch-Lint
ElsiKora/Git-Branch-Lint
@elsikora/git-branch-lint
/
bin
/
domain
/
type
/
config.type.d.ts
8 lines
(7 loc)
•
225 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
TBranchList
}
from
"./branch.type"
;
import
type
{
IRulesList
}
from
"./rules.type"
;
export
interface
IBranchLintConfig
{
branches
:
TBranchList
;
ignore
?:
Array
<
string
>;
rules
?:
Partial
<
IRulesList
>; }