mirror of
https://github.com/dsebastien/obsidian-graph-explorer-base-view.git
synced 2026-07-22 06:56:14 +00:00
12 lines
369 B
TypeScript
12 lines
369 B
TypeScript
import type { UserConfig } from '@commitlint/types'
|
|
|
|
const Configuration: UserConfig = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'header-max-length': [1, 'always', 100],
|
|
'scope-enum': [2, 'always', ['all', 'build', 'deps', 'docs', 'plugin']],
|
|
'scope-case': [2, 'always', 'lowercase']
|
|
}
|
|
}
|
|
|
|
export default Configuration
|