The plugin does not work in current Jetbrains IDEs (no auto suggest).
My .commitlintrc.json is placed in the project root and looks like
{
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-enum": [
2,
"always",
[
"page-configuration",
"page-template",
"system-notifications",
]
],
"type-enum": [
2,
"always",
[
"ci",
"docs",
"feat",
"fix",
"localdev",
"refactor",
"revert"
]
]
}
}
But no auto suggest is shown in the commit dialog.
The plugin does not work in current Jetbrains IDEs (no auto suggest).
My
.commitlintrc.jsonis placed in the project root and looks like{ "extends": [ "@commitlint/config-conventional" ], "rules": { "scope-enum": [ 2, "always", [ "page-configuration", "page-template", "system-notifications", ] ], "type-enum": [ 2, "always", [ "ci", "docs", "feat", "fix", "localdev", "refactor", "revert" ] ] } }But no auto suggest is shown in the commit dialog.
Hey! The Commitlint plugin is deprecated since a long time, so it is surprising to see people can still install and use it. Probably JetBrains removed compatibility checks on their end.
That said, I have planned to integrate Commitlint functionalities directly into the main Conventional Commit plugin, very soon.