-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommitlint.config.ts
55 lines (52 loc) · 2.28 KB
/
commitlint.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import type { UserConfig } from "@commitlint/types";
import { RuleConfigSeverity } from "@commitlint/types";
// build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
// chore: Installing new dependencies, or bumping deps
// ci: Changes to our CI configuration files and scripts (Ex: GitHub workflows, Husky, Travis, Circle)
// docs: Documentation only changes. Ex: README.md
// feat: Changes about feature addition or removal. Ex: `feat: add table on landing page`, `feat: remove table from landing page`
// fix: Bug fix, followed by the bug. Ex: `fix: illustration overflows in mobile view`
// perf : Code change regarding performance (deriving state, using memo, callback)
// refactor: A code change that neither fixes a bug nor adds a feature
// revert : When reverting commits
// style: Changes that do not affect the meaning of the code (white-space, formatting, missing semicolons, removing comments etc.)
// test: Adding missing tests or correcting existing tests
const config: UserConfig = {
extends: ["@commitlint/config-conventional"],
// See https://commitlint.js.org/#/reference-rules
// Default: https://www.npmjs.com/package/@commitlint/config-conventional#rules
rules: {
"body-leading-blank": [RuleConfigSeverity.Disabled, "always"], //
"body-max-line-length": [RuleConfigSeverity.Disabled, "always", 100], //
"footer-leading-blank": [RuleConfigSeverity.Warning, "always"],
"footer-max-line-length": [RuleConfigSeverity.Disabled, "always", 100], //
"header-max-length": [RuleConfigSeverity.Disabled, "always", 100], //
"subject-case": [
RuleConfigSeverity.Warning,
"never",
["sentence-case", "start-case", "pascal-case", "upper-case"],
], //
"subject-empty": [RuleConfigSeverity.Disabled, "never"], //
"subject-full-stop": [RuleConfigSeverity.Warning, "never", "."], //
"type-case": [RuleConfigSeverity.Error, "always", "lower-case"],
"type-empty": [RuleConfigSeverity.Error, "never"],
"type-enum": [
RuleConfigSeverity.Error,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
],
],
},
};
export default config;