You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
snabbdom/commitlint.config.json

38 lines
814 B
JSON

{
"rules": {
"body-leading-blank": [2, "always"],
"body-max-line-length": [2, "always", 100],
"footer-leading-blank": [2, "always"],
"footer-max-line-length": [2, "always", 100],
"header-max-length": [2, "always", 100],
"subject-case": [2, "never", [
"sentence-case",
"start-case",
"pascal-case",
"upper-case"
]],
"subject-empty": [2, "never"],
"subject-full-stop": [2, "never", "."],
"type-empty": [2, "never"],
"type-enum": [2, "always", [
"auto",
"ux",
"dx"
]],
"scope-empty": [2, "never"],
"scope-enum": [2, "always", [
"commitlint",
"deps",
"docs",
"eslint",
"exports",
"format",
"git",
"package",
"relic",
"typescript",
"vscode"
]]
}
}