AFFiNE/tools/commitlint/.commitlintrc.json
forehalo 4125038ff8
feat(nbstore): init (#7639)
TODO

- [x] basic
- [x] storages
- [x] producer/consumer
- [x] operation pattern
- [x] events
- [x] worker
- [x] readme
- [x] peer dependencies
2024-11-22 03:13:04 +00:00

34 lines
528 B
JSON

{
"extends": ["@commitlint/config-conventional"],
"rules": {
"scope-enum": [
2,
"always",
[
"admin",
"electron",
"server",
"core",
"web",
"mobile",
"ios",
"android",
"docs",
"storybook",
"component",
"workspace",
"env",
"graphql",
"cli",
"hooks",
"i18n",
"native",
"templates",
"debug",
"nbstore",
"infra"
]
]
}
}