diff options
| author | Fuwn <[email protected]> | 2021-04-29 12:27:43 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-29 12:27:43 +0000 |
| commit | 73d5730fe41f508d781c58df4171bab9ff98fd77 (patch) | |
| tree | beae44c438f57c96826cbdfb4f0eb8a1bbbecf4d /commitlint.config.js | |
| parent | fmt: Increase verbosity of database migrations (diff) | |
| download | whirl-73d5730fe41f508d781c58df4171bab9ff98fd77.tar.xz whirl-73d5730fe41f508d781c58df4171bab9ff98fd77.zip | |
chore(devops): setup commit-linting, commit-helper, and quality-of-life scripts
Diffstat (limited to 'commitlint.config.js')
| -rw-r--r-- | commitlint.config.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 0000000..d3ca128 --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,12 @@ +module.exports = { + extends: ["@commitlint/config-conventional"], + rules: { + "scope-enum": [ + 2, + "always", + [ + "global", + ], + ], + }, +}; |