Skip to content

Latest commit

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..

README.md

Load shared commitlint configuration

@commitlint/load

Getting started

npm install --save-dev @commitlint/load

Example

const load = require('@commitlint/load');

load({extends: ['./package']}).then(config => console.log(config));
// => { extends: ['./package', './package-b'], rules: {} }

Consult docs/api for comprehensive documentation.