diff options
| author | Fuwn <[email protected]> | 2021-04-29 12:27:43 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-29 12:27:43 -0700 |
| commit | c3af12c0969d5e488a116e44ced4cbf8857a4299 (patch) | |
| tree | a2f589f7a7f72d7a76d4c430ea8cd8342112393c /commitlint.config.js | |
| parent | fmt: Increase verbosity of database migrations (diff) | |
| download | whirl-c3af12c0969d5e488a116e44ced4cbf8857a4299.tar.xz whirl-c3af12c0969d5e488a116e44ced4cbf8857a4299.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", + ], + ], + }, +}; |