From b27ab08544373cfb72a4808756e2e8126ea96a97 Mon Sep 17 00:00:00 2001 From: Gavin Sharp Date: Thu, 6 Feb 2020 16:35:55 -0500 Subject: [PATCH] fix: drop support for 'improvement' type (#899) The 'improvement' type was never added to the spec, and isn't supported by other tools in the ecosystem. BREAKING CHANGE: 'improvement' type will now be rejected by this config. --- @commitlint/config-conventional/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/@commitlint/config-conventional/index.js b/@commitlint/config-conventional/index.js index bec8fc77f3..2f84ceed08 100644 --- a/@commitlint/config-conventional/index.js +++ b/@commitlint/config-conventional/index.js @@ -24,7 +24,6 @@ module.exports = { 'docs', 'feat', 'fix', - 'improvement', 'perf', 'refactor', 'revert',