mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 11:40:28 -05:00
14 lines
308 B
JavaScript
14 lines
308 B
JavaScript
/**
|
|
* A shared CommitLint configuration for the repository.
|
|
*
|
|
* @type {import("commitlint").Config}
|
|
* */
|
|
module.exports = {
|
|
$schema: 'https://json.schemastore.org/commitlintrc',
|
|
extends: ['gitmoji'],
|
|
rules: {
|
|
'footer-leading-blank': [0, 'never'],
|
|
'header-max-length': [0, 'never'],
|
|
},
|
|
};
|