Skip to content

Commit

Permalink
perf: add TypeScript declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
vansergen committed Jul 21, 2022
1 parent a3b6ceb commit cb078d2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
declare const _default: {
extends: "@commitlint/config-conventional";
rules: {
"body-max-line-length": [1, "always", 100];
"type-case": [2, "always", "camel-case"];
"type-enum": [
2,
"always",
[
"feat",
"fix",
"perf",
"revert",
"build",
"initial",
"dependencies",
"peerDependencies",
"devDependencies",
"metadata",
"docs",
"style",
"chore",
"refactor",
"test",
"ci"
]
];
};
};

export = _default;

0 comments on commit cb078d2

Please sign in to comment.