diff --git a/.commitlintrc.cjs b/.commitlintrc.cjs deleted file mode 100644 index d599431d3..000000000 --- a/.commitlintrc.cjs +++ /dev/null @@ -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", - ], - ], - }, -}; diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6a043355a..5b92c9823 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6d05b62f7..8c63bde74 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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: