mirror of https://github.com/sualko/cloud_bbb
chore: ignore tx-robot commits if linting
parent
d744699f6b
commit
d862eb0d4d
|
@ -1,30 +0,0 @@
|
||||||
{
|
|
||||||
"extends": ["@commitlint/config-conventional"],
|
|
||||||
"rules": {
|
|
||||||
"type-enum": [
|
|
||||||
2,
|
|
||||||
"always",
|
|
||||||
[
|
|
||||||
"l10n",
|
|
||||||
"release",
|
|
||||||
"build",
|
|
||||||
"ci",
|
|
||||||
"chore",
|
|
||||||
"docs",
|
|
||||||
"feat",
|
|
||||||
"fix",
|
|
||||||
"perf",
|
|
||||||
"refactor",
|
|
||||||
"revert",
|
|
||||||
"style",
|
|
||||||
"test",
|
|
||||||
"example"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"body-max-line-length": [
|
|
||||||
1,
|
|
||||||
"always",
|
|
||||||
100
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
module.exports = {
|
||||||
|
extends: ['@commitlint/config-conventional'],
|
||||||
|
rules: {
|
||||||
|
'type-enum': [
|
||||||
|
2,
|
||||||
|
'always',
|
||||||
|
[
|
||||||
|
'l10n',
|
||||||
|
'release',
|
||||||
|
'build',
|
||||||
|
'ci',
|
||||||
|
'chore',
|
||||||
|
'docs',
|
||||||
|
'feat',
|
||||||
|
'fix',
|
||||||
|
'perf',
|
||||||
|
'refactor',
|
||||||
|
'revert',
|
||||||
|
'style',
|
||||||
|
'test',
|
||||||
|
'example',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'body-max-line-length': [
|
||||||
|
1,
|
||||||
|
'always',
|
||||||
|
100,
|
||||||
|
],
|
||||||
|
},
|
||||||
|
ignores: [commit => commit.startsWith('[tx-robot]')],
|
||||||
|
};
|
Loading…
Reference in New Issue