Welcome to mirror list, hosted at ThFree Co, Russian Federation.

contributing.json - github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 296f39a6c7a368b2d32c8572ae5fe7fcee640ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// https://gitmagic.io/rules
{
  "pull_request": {
    "subject_cannot_be_empty": true,
    "subject_must_be_longer_than": 4,
    "subject_must_be_shorter_than": 101,
    "subject_must_not_end_with_dot": true,

    "body_cannot_be_empty": true,
    "body_must_include_verification_steps": false
  },
  "issue": {
    "subject_cannot_be_empty": true,
    "subject_must_be_longer_than": 4,
    "subject_must_be_shorter_than": 101,
    "subject_must_not_end_with_dot": true,

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