Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions commitlint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ export default {
rules: {
// Disable the rule that enforces lowercase in subject
"subject-case": [0], // 0 = disable, 1 = warn, 2 = error
// Disable the rule that enforces a maximum line length in the body
"body-max-line-length": [0, "always"]
Copy link

Copilot AI Oct 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The second parameter 'always' is unnecessary when disabling a rule (level 0). When a rule is disabled, applicability conditions are ignored. Consider simplifying to [0] for consistency with the subject-case rule above.

Suggested change
"body-max-line-length": [0, "always"]
"body-max-line-length": [0]

Copilot uses AI. Check for mistakes.
},

};