-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ok-nick/roi
- Loading branch information
Showing
42 changed files
with
939 additions
and
481 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
rules: | ||
# Body may be empty | ||
body-empty: | ||
level: ignore | ||
|
||
# Description must not be empty | ||
description-empty: | ||
level: error | ||
|
||
# Description must start with a capital letter and must not end with a period or space | ||
description-format: | ||
level: error | ||
format: ^[A-Z0-9].*[^. ]$ | ||
|
||
# Description should be <70 chars | ||
description-max-length: | ||
level: warning | ||
length: 70 | ||
|
||
# Scope may be empty | ||
scope-empty: | ||
level: ignore | ||
|
||
# Subject line should exist | ||
subject-empty: | ||
level: error | ||
|
||
# Type must be one of these options | ||
type: | ||
level: error | ||
options: | ||
- fix | ||
- feat | ||
- chore | ||
- update | ||
- doc |
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
rules: | ||
# Body may be empty | ||
body-empty: | ||
level: ignore | ||
|
||
# Description must not be empty | ||
description-empty: | ||
level: error | ||
|
||
# Description must start with a capital letter and must not end with a period or space | ||
description-format: | ||
level: error | ||
format: ^[A-Z0-9].*[^. ]$ | ||
|
||
# Description should be <70 chars | ||
description-max-length: | ||
level: warning | ||
length: 70 | ||
|
||
# Scope must be one of the following | ||
scope: | ||
level: error | ||
options: | ||
- export_schema | ||
- make_test_images | ||
- sdk | ||
|
||
# Scope may be empty | ||
# (NOTE: Disabled for now while we work around | ||
# https://github.com/KeisukeYamashita/commitlint-rs/issues/355.) | ||
# scope-empty: | ||
# level: ignore | ||
|
||
# Subject line should exist | ||
subject-empty: | ||
level: error | ||
|
||
# Type must be one of these options | ||
type: | ||
level: error | ||
options: | ||
- fix | ||
- feat | ||
- chore | ||
- update | ||
- doc |
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
Oops, something went wrong.