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