Skip to content
This repository has been archived by the owner on Jul 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1 from gitmagic-bot/master
Browse files Browse the repository at this point in the history
Add contributing.json (GitMagic)
  • Loading branch information
rightlag committed Aug 7, 2017
2 parents d6ceb92 + ec0dca9 commit 5954ab4
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions contributing.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
// https://gitmagic.io/rules
{
"commit": {
"subject_cannot_be_empty": true,
"subject_must_be_longer_than": 4,
"subject_must_be_shorter_than": 101,
"subject_lines_must_be_shorter_than": 51,
"subject_must_be_single_line": true,
"subject_must_be_in_tense": "imperative",
"subject_must_start_with_case": "lower",
"subject_must_not_end_with_dot": true,

"body_lines_must_be_shorter_than": 73
},
"pull_request": {
"subject_cannot_be_empty": true,
"subject_must_be_longer_than": 4,
"subject_must_be_shorter_than": 101,
"subject_must_be_in_tense": "imperative",
"subject_must_start_with_case": "upper",
"subject_must_not_end_with_dot": true,

"body_cannot_be_empty": true,
"body_must_include_verification_steps": true,
"body_must_include_screenshot": ["html", "css"]
},
"issue": {
"subject_cannot_be_empty": true,
"subject_must_be_longer_than": 4,
"subject_must_be_shorter_than": 101,
"subject_must_be_in_tense": "imperative",
"subject_must_start_with_case": "upper",
"subject_must_not_end_with_dot": true,

"body_cannot_be_empty": true,
"body_must_include_reproduction_steps": ["bug"],

"label_must_be_set": true
}
}

0 comments on commit 5954ab4

Please sign in to comment.