We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypeScript
1 parent a3b6ceb commit cb078d2Copy full SHA for cb078d2
index.d.ts
@@ -0,0 +1,31 @@
1
+declare const _default: {
2
+ extends: "@commitlint/config-conventional";
3
+ rules: {
4
+ "body-max-line-length": [1, "always", 100];
5
+ "type-case": [2, "always", "camel-case"];
6
+ "type-enum": [
7
+ 2,
8
+ "always",
9
+ [
10
+ "feat",
11
+ "fix",
12
+ "perf",
13
+ "revert",
14
+ "build",
15
+ "initial",
16
+ "dependencies",
17
+ "peerDependencies",
18
+ "devDependencies",
19
+ "metadata",
20
+ "docs",
21
+ "style",
22
+ "chore",
23
+ "refactor",
24
+ "test",
25
+ "ci"
26
+ ]
27
+ ];
28
+ };
29
+};
30
+
31
+export = _default;
0 commit comments