@commitlint/cli
picks up configuration from ./commitlint.config.js
.
The file is expected
- to contain valid JavaScript
- export a configuration object
- adhere to the schema outlined below
Add the path to the configuration file. Example: commitlint --config commitlint.config.js
const Configuration = {
/*
* Resolve and load @commitlint/config-conventional from node_modules.
* Referenced packages must be installed
*/
extends: ['@commitlint/config-conventional'],
/*
* Resolve and load conventional-changelog-atom from node_modules.
* Referenced packages must be installed
*/
parserPreset: 'conventional-changelog-atom',
/*
* Resolve and load @commitlint/format from node_modules.
* Referenced package must be installed
*/
formatter: '@commitlint/format',
/*
* Any rules defined here will override rules from @commitlint/config-conventional
*/
rules: {
'type-enum': [2, 'always', ['foo']],
},
/*
* Array of functions that return true if commitlint should ignore the given message.
* Given array is merged with predefined functions, which consist of matchers like:
*
* - 'Merge pull request', 'Merge X into Y' or 'Merge branch X'
* - 'Revert X'
* - 'v1.2.3' (ie semver matcher)
* - 'Automatic merge X' or 'Auto-merged X into Y'
*
* To see full list, check https://github.com/conventional-changelog/commitlint/blob/master/%40commitlint/is-ignored/src/defaults.ts.
* To disable those ignores and run rules always, set `defaultIgnores: false` as shown below.
*/
ignores: [(commit) => commit === ''],
/*
* Whether commitlint uses the default ignore rules, see the description above.
*/
defaultIgnores: true,
/*
* Custom URL to show upon failure
*/
helpUrl:
'https://github.com/conventional-changelog/commitlint/#what-is-commitlint',
/*
* Custom prompt configs
*/
prompt: {
messages: {},
questions: {
type: {
description: 'please input type:',
},
},
},
};
module.exports = Configuration;
import type {UserConfig} from '@commitlint/types';
import {RuleConfigSeverity} from '@commitlint/types';
const Configuration: UserConfig = {
/*
* Resolve and load @commitlint/config-conventional from node_modules.
* Referenced packages must be installed
*/
extends: ['@commitlint/config-conventional'],
/*
* Resolve and load conventional-changelog-atom from node_modules.
* Referenced packages must be installed
*/
parserPreset: 'conventional-changelog-atom',
/*
* Resolve and load @commitlint/format from node_modules.
* Referenced package must be installed
*/
formatter: '@commitlint/format',
/*
* Any rules defined here will override rules from @commitlint/config-conventional
*/
rules: {
'type-enum': [RuleConfigSeverity.Error, 'always', ['foo']],
},
/*
* Functions that return true if commitlint should ignore the given message.
*/
ignores: [(commit) => commit === ''],
/*
* Whether commitlint uses the default ignore rules.
*/
defaultIgnores: true,
/*
* Custom URL to show upon failure
*/
helpUrl:
'https://github.com/conventional-changelog/commitlint/#what-is-commitlint',
/*
* Custom prompt configs
*/
prompt: {
messages: {},
questions: {
type: {
description: 'please input type:',
},
},
},
};
module.exports = Configuration;
Every commitlint configuration can extend other commitlint configurations.
Specify configurations to extend via the .extends
key, using ids
that can be resolved by the node resolve algorithm.
This means installed npm packages and local files can be used.
- npm
npm install --save-dev commitlint-config-lerna @commitlint/config-conventional
// commitlint.config.js
module.exports = {
extends: [
'lerna' // prefixed with commitlint-config-*,
'@commitlint/config-conventional' // scoped packages are not prefixed
]
}
- local
// commitlint.config.js
module.exports = {
extends: ['./commitlint.base.js', './commitlint.types.js'],
};
// commitlint.types.js, will be picked up by commitlint.config.js
module.exports = {
rules: {
'type-enum': [2, 'always', ['foo']],
},
};
// commitlint.base.js, will be picked up by commitlint.config.js
module.exports = {
extends: ['@commitlint/config-conventional'], // extends can be nested
parserPreset: 'conventional-changelog-atom',
};
The parser preset used to parse commit messages can be configured. Use ids resolvable by the node resolve algorithm.
This means installed npm packages and local files can be used.
- npm
npm install --save-dev conventional-changelog-atom
// commitlint.config.js
module.exports = {
parserPreset: 'conventional-changelog-atom',
};
- local
// commitlint.config.js
module.exports = {
parserPreset: './parser-preset',
};
// parser-preset.js
module.exports = {
parserOpts: {
headerPattern: /^(\w*)\((\w*)\)-(\w*)\s(.*)$/,
headerCorrespondence: ['type', 'scope', 'ticket', 'subject'],
},
};
Commitlint can output the issues encountered in different formats, if necessary. Use ids resolvable by the node resolve algorithm.
module.exports = {
formatter: '@commitlint/format',
};
Refer to Rules for a complete list of available rules.
Config command-line submit interaction, works with @commitlint/cz-commitlint
.
Refer to Prompt Config for details.