One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links 馃搮
calendar.xyehr.cn
1import type { UserConfig } from '@commitlint/types'
2
3const config: UserConfig = {
4 extends: ['@commitlint/config-conventional'],
5 rules: {
6 'type-enum': [
7 2,
8 'always',
9 ['feat', 'fix', 'docs', 'style', 'refactor', 'test', 'chore', 'revert'],
10 ],
11 'subject-max-length': [2, 'always', 100],
12 },
13}
14
15export default config