aboutsummaryrefslogtreecommitdiff
path: root/commitlint.config.js
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-04-29 12:27:43 -0700
committerFuwn <[email protected]>2021-04-29 12:27:43 -0700
commitc3af12c0969d5e488a116e44ced4cbf8857a4299 (patch)
treea2f589f7a7f72d7a76d4c430ea8cd8342112393c /commitlint.config.js
parentfmt: Increase verbosity of database migrations (diff)
downloadwhirl-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.js12
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",
+ ],
+ ],
+ },
+};