You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.warn(`Using legacy ${path.relative(process.cwd(),legacy.config)}. Rename to .commitlintrc to silence this warning.`);
66
+
if(legacyFound&&!found){
67
+
console.warn(`Using legacy ${path.relative(process.cwd(),legacy.config)}. Rename to commitlint.config.js to silence this warning.`);
71
68
}
72
69
73
-
if(legacyFound&&rawFound){
74
-
console.warn(`Ignored legacy ${path.relative(process.cwd(),legacy.config)} as ${path.relative(process.cwd(),raw.config)} superseeds it. Remove .conventional-changelog-lintrc to silence this warning.`);
70
+
if(legacyFound&&found){
71
+
console.warn(`Ignored legacy ${path.relative(process.cwd(),legacy.config)} as commitlint.config.js superseeds it. Remove .conventional-changelog-lintrc to silence this warning.`);
***wildcards** config is ignored - as of version `2.0.0` the former `.wildcards` configuration is ignored entirely. If your `.commitlintrc` or an extended shareable configuration has a `.wildcards` key a warning will be issued.
17
+
***wildcards** config is ignored - as of version `2.0.0` the former `.wildcards` configuration is ignored entirely. If your `.conventional-changelog-lintrc`, `commitlint.config.js` or an extended shareable configuration has a `.wildcards` key a warning will be issued.
0 commit comments