mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-05 21:15:57 -06:00
- Add GitHub Actions workflows for CI, release, and deployment - Configure Renovate for automated dependency updates - Set up Husky pre-commit hooks with lint-staged - Add commitlint for enforcing Conventional Commits - Configure semantic-release for automated versioning - Add Prettier configuration for consistent formatting - Reformat codebase with new formatting rules
27 lines
421 B
JSON
27 lines
421 B
JSON
{
|
|
"extends": ["@commitlint/config-conventional"],
|
|
"rules": {
|
|
"type-enum": [
|
|
2,
|
|
"always",
|
|
[
|
|
"feat",
|
|
"fix",
|
|
"docs",
|
|
"style",
|
|
"refactor",
|
|
"perf",
|
|
"test",
|
|
"build",
|
|
"ci",
|
|
"chore",
|
|
"revert"
|
|
]
|
|
],
|
|
"subject-case": [2, "never", ["upper-case"]],
|
|
"subject-empty": [2, "never"],
|
|
"subject-full-stop": [2, "never", "."],
|
|
"header-max-length": [2, "always", 100]
|
|
}
|
|
}
|