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
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 15 lines 347 B view raw
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