mirror of
https://github.com/chrisbenincasa/tunarr
synced 2026-04-21 21:37:40 +00:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
|
|
import type { UserConfig } from '@commitlint/types';
|
||
|
|
|
||
|
|
const Config: UserConfig = {
|
||
|
|
extends: ['@commitlint/config-conventional'],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Config;
|