-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1639 from oasisprotocol/mz/release/gitlint
Setup gitlint
- Loading branch information
Showing
4 changed files
with
64 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# gitlint configuration. | ||
|
||
# For more information, see: | ||
# https://jorisroovers.com/gitlint/configuration/. | ||
|
||
[general] | ||
verbosity = 2 | ||
ignore-merge-commits=true | ||
ignore-fixup-commits=false | ||
ignore-squash-commits=false | ||
ignore=body-is-missing | ||
contrib=contrib-disallow-cleanup-commits | ||
|
||
[title-max-length] | ||
line-length=72 | ||
|
||
[body-max-line-length] | ||
line-length=80 | ||
|
||
[body-min-length] | ||
min-length=20 | ||
|
||
[title-must-not-contain-word] | ||
words=wip |
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,16 @@ | ||
// @ts-check | ||
// https://github.com/oasisprotocol/oasis-core/blob/50d972df71fed2bcaa88e6ce5430d919ec08087d/common.mk#L171-L180 | ||
const execSync = require('child_process').execSync | ||
|
||
const GIT_ORIGIN_REMOTE = 'origin' | ||
const RELEASE_BRANCH = 'master' | ||
const BRANCH = `${GIT_ORIGIN_REMOTE}/${RELEASE_BRANCH}` | ||
const COMMIT_SHA = require('child_process').execSync(`git rev-parse ${BRANCH}`).toString().trim() | ||
|
||
console.log(`*** Running gitlint for commits from ${BRANCH} (${COMMIT_SHA})`) | ||
|
||
try { | ||
execSync(`gitlint --commits ${BRANCH}..HEAD`, { stdio: 'inherit' }) | ||
} catch (error) { | ||
process.exit(1) | ||
} |
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