mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-02-13 05:49:06 +00:00
feat: go 1.25.5, dependency updates, renamed internal/errors (#129)
* feat: rename internal/errors to internal/apperrors * fix(tests): clear env values before using in tests * feat: rename internal/errors to internal/apperrors * chore(deps): update go and all dependencies * chore: remove renovate from pre-commit, formatting * chore: sonarcloud fixes * feat: consolidate constants to appconstants/constants.go * chore: sonarcloud fixes * feat: simplification, deduplication, test utils * chore: sonarcloud fixes * chore: sonarcloud fixes * chore: sonarcloud fixes * chore: sonarcloud fixes * chore: clean up * fix: config discovery, const deduplication * chore: fixes
This commit is contained in:
@@ -1,13 +1,55 @@
|
||||
{
|
||||
"extends": ["@commitlint/config-conventional"],
|
||||
"extends": [
|
||||
"@commitlint/config-conventional"
|
||||
],
|
||||
"rules": {
|
||||
"type-enum": [2, "always", ["feat", "fix", "docs", "style", "refactor", "perf", "test", "chore", "ci", "build", "revert"]],
|
||||
"type-case": [2, "always", "lower-case"],
|
||||
"type-empty": [2, "never"],
|
||||
"subject-empty": [2, "never"],
|
||||
"subject-full-stop": [2, "never", "."],
|
||||
"header-max-length": [2, "always", 100],
|
||||
"body-leading-blank": [1, "always"],
|
||||
"footer-leading-blank": [1, "always"]
|
||||
"type-enum": [
|
||||
2,
|
||||
"always",
|
||||
[
|
||||
"feat",
|
||||
"fix",
|
||||
"docs",
|
||||
"style",
|
||||
"refactor",
|
||||
"perf",
|
||||
"test",
|
||||
"chore",
|
||||
"ci",
|
||||
"build",
|
||||
"revert"
|
||||
]
|
||||
],
|
||||
"type-case": [
|
||||
2,
|
||||
"always",
|
||||
"lower-case"
|
||||
],
|
||||
"type-empty": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"subject-empty": [
|
||||
2,
|
||||
"never"
|
||||
],
|
||||
"subject-full-stop": [
|
||||
2,
|
||||
"never",
|
||||
"."
|
||||
],
|
||||
"header-max-length": [
|
||||
2,
|
||||
"always",
|
||||
100
|
||||
],
|
||||
"body-leading-blank": [
|
||||
1,
|
||||
"always"
|
||||
],
|
||||
"footer-leading-blank": [
|
||||
1,
|
||||
"always"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user