mirror of
https://github.com/mnaoumov/obsidian-backlink-full-path.git
synced 2026-07-22 12:10:28 +00:00
8 lines
268 B
TypeScript
8 lines
268 B
TypeScript
import type { UserConfig } from '@commitlint/types';
|
|
|
|
const config: UserConfig = {
|
|
extends: ['@commitlint/config-conventional']
|
|
};
|
|
|
|
// eslint-disable-next-line import-x/no-default-export -- Commitlint infrastructure requires a default export.
|
|
export default config;
|