fix(project): remove commitlint

This commit is contained in:
Łukasz Mierzwa
2026-04-19 13:26:14 +01:00
committed by Łukasz Mierzwa
parent c01fec9450
commit 8585486fd0
3 changed files with 0 additions and 54 deletions
-34
View File
@@ -1,34 +0,0 @@
module.exports = {
rules: {
"body-leading-blank": [1, "always"],
"footer-leading-blank": [1, "always"],
"header-max-length": [2, "always", 100],
"scope-case": [2, "always", "lower-case"],
"subject-case": [
2,
"never",
["sentence-case", "start-case", "pascal-case", "upper-case"],
],
"subject-empty": [2, "never"],
"subject-full-stop": [2, "never", "."],
"type-case": [2, "always", "lower-case"],
"type-empty": [2, "never"],
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
],
],
},
};
-15
View File
@@ -243,20 +243,6 @@ jobs:
- name: Check for non-typescript UI components
run: make -C ui lint-typescript
git-commit:
name: Lint git commit
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Lint git commit
uses: wagoid/commitlint-github-action@v6.2.1
with:
configFile: .commitlintrc.cjs
docs:
name: Lint documentation
runs-on: ubuntu-latest
@@ -283,7 +269,6 @@ jobs:
- package-lock
- lint-versions
- typescript
- git-commit
- docs
runs-on: ubuntu-latest
steps:
-5
View File
@@ -10,11 +10,6 @@ file.
Every release tag name will follow `vX.Y.Z` naming scheme, example: `v0.1.0`.
All releases are tagged against the `main` branch.
## Commit messages
[Conventional Commits](https://www.conventionalcommits.org) format is required
for all commits.
## Testing changes
To run included tests and linters run: