I just realized i was using this without commiting it, so this is a very big commit
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
import type { UserConfig } from '@commitlint/types'
|
|
|
|
const commitlintConfig: UserConfig = {
|
|
extends: ['@commitlint/config-conventional']
|
|
}
|
|
|
|
export default commitlintConfig
|