Skip to content

Commit aa47167

Browse files
authored
Merge branch 'main' into dependabot/github_actions/docker/login-action-3.5.0
2 parents 3aa7fe1 + a840da1 commit aa47167

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
*.bak
1111
*~
12+
\#*\#
13+
.\#*
1214

1315
# OSX
1416
# =========================

commitlint.config.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
export default {
1+
const Configuration = {
2+
/*
3+
* Inherit rules from conventional commits.
4+
*/
25
extends: ["@commitlint/config-conventional"],
6+
7+
/*
8+
* Any rules defined here will override rules from parent.
9+
*/
310
rules: {
411
"header-max-length": [1, "always", 100],
512
"body-max-line-length": [1, "always", 100],
613
"footer-max-length": [1, "always", 100],
714
},
815
};
16+
17+
export default Configuration;

0 commit comments

Comments
 (0)