strapi/.commitlintrc.ts
Ben Irvin 82460d7ac3
release: 5.5.0 (#22340)
* feat: use mux player for video

Signed-off-by: Sora Morimoto <sora@morimoto.io>

* chore(deps): bump @strapi/design-system from 2.0.0-rc.13 to 2.0.0-rc.14 (#22274)

* enhancement: disable preview link when changes are not saved (#22275)

* feat: send diagnostic messages from remote strapi (#22214)

* chore: re-add some controls

* chore: test-snapshots

* ci: use correct fetch-depth (#22288)

* test(front): update snapshots

* ci: use correct fetch-depth

* Chore: setting up nx releases (#22264)

* chore(deps): update @strapi/pack-up to v5.0.2 (#22261)

---------

Co-authored-by: Ben Irvin <ben@innerdvations.com>

* Fix: move msw to devDeps and change koa range (#22129)

---------

Co-authored-by: Ben Irvin <ben.irvin@strapi.io>

* chore: remove yarn.lock from templates/website (#22294)

* fix: turn on and update i18n settings.spec.ts (#22282)

* chore: use "workspace:*" for internal dependencies (#22303)

* chore: use "workspace:*" for internal dependencies

* chore: update yarn lock

* ci: fix docs_build (#22304)

* ci: fix docs_build

* ci: run docs_build on global changes

* chore: upgrade vite-plugin-dts (#22297)

* fix: document actions being rendered multiple times (#22283)

* chore: update sdk-plugin and dedupe yarn.lock (#22296)

* chore: cleanup removing support for assets without metadata (#22215)

* Update: Purchase Page links + Add Content History menu link (#21531)

* Update: Purchase Page links + Add Content History menu link

* enhancement:Update Purchase Page links + Add Content History menu link

* enhancement: update purchase page links

* chore: update links

---------

Co-authored-by: Simone <startae14@gmail.com>

* fix: add documentId to `me` graphql query (#22321)

* fix(preview): page title and disabled link (#22324)

* fix: add preview title tag to get browser tooltip

* fix: same header title as edit view

* fix: disabled preview button

* chore: remove useless variable

* fix: broken hover in e2e tests

* fix: prevent flaky iframe src check

* release: 5.5.0

* release: update missed version numbers

* release: update yarn.lock

* release: use workspace for internal packages

* release: update yarn.lock

---------

Signed-off-by: Sora Morimoto <sora@morimoto.io>
Co-authored-by: Sora Morimoto <sora@morimoto.io>
Co-authored-by: markkaylor <mark.kaylor@strapi.io>
Co-authored-by: Rémi de Juvigny <8087692+remidej@users.noreply.github.com>
Co-authored-by: Bassel Kanso <basselkanso82@gmail.com>
Co-authored-by: Alexandre Bodin <bodin.alex@gmail.com>
Co-authored-by: Rémi de Juvigny <remi.dejuvigny@strapi.io>
Co-authored-by: Jonas Thelemann <e-mail@jonas-thelemann.de>
Co-authored-by: Adrien Foulon <6115458+Tofandel@users.noreply.github.com>
Co-authored-by: Maxime Castres <17828745+Mcastres@users.noreply.github.com>
Co-authored-by: Simone <startae14@gmail.com>
Co-authored-by: Laurens Kling <laurens@goedideemedia.nl>
Co-authored-by: Alexandre BODIN <alexandrebodin@users.noreply.github.com>
2024-12-04 16:15:06 +01:00

34 lines
679 B
TypeScript

import type { UserConfig } from '@commitlint/types';
import { RuleConfigSeverity } from '@commitlint/types';
const config: UserConfig = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
RuleConfigSeverity.Error,
'always',
[
'chore',
'ci',
'docs',
'enhancement',
'feat',
'fix',
'release',
'revert',
'security',
'test',
'future',
],
],
},
ignores: [
(commitMessage) => {
// add an exception for github
return /^Merge branch '.*' into [a-zA-Z0-9\/\-_]+$/.test(commitMessage);
},
],
};
export default config;