Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
ci(commitlint): don't enforce scope for now
Browse files Browse the repository at this point in the history
Restricting the scopes is unnecessary for now, and also slows down the commit process. Once we have been using the system for a while we can evaluate which scopes make sense to keep, but for now let's not impose any restrictions.
  • Loading branch information
thislooksfun committed Feb 8, 2020
1 parent 90593de commit 4715c20
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"scope-enum": [
2,
"always",
[
// Packages
"package",
// Tests
"unit",
"e2e",
// Other
// TBD
],
],
// "scope-enum": [
// 2,
// "always",
// [
// // Packages
// "package",
// // Tests
// "unit",
// "e2e",
// //
// "mergify",
// // Other
// // TBD
// ],
// ],
},
};

0 comments on commit 4715c20

Please sign in to comment.