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.

feat: add husky and commitlint

authored by

Evan Huang and committed by
GitHub
715f66bb 624a6046

+15
+15
commitlint.config.ts
··· 1 + import type { UserConfig } from '@commitlint/types'; 2 + 3 + const 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 + 15 + export default config;