From ec771811b2d8610fd95ea19b378d0b4b36e41dc3 Mon Sep 17 00:00:00 2001 From: "andreas.karlsson" Date: Thu, 10 Oct 2024 00:02:33 +0200 Subject: [PATCH] build: use relaxed conventional commits standard (#205) --- .commitlintrc | 46 +--------------------------------------------- 1 file changed, 1 insertion(+), 45 deletions(-) diff --git a/.commitlintrc b/.commitlintrc index b4e673c0..c927cae3 100644 --- a/.commitlintrc +++ b/.commitlintrc @@ -1,47 +1,3 @@ { - extends:['@commitlint/config-conventional'], - rules: { - 'scope-case': [2, 'always', 'lower-case'], - 'scope-enum': [ - 2, - 'always', - [ - 'web', - 'client-http', - 'server', - 'react', - 'examples' - ], - ], - }, - prompt: { - questions: { - scope: { - description: - 'What is the scope of this change (e.g. component or file name)', - enum: { - web: { - description: "Change in the web provider", - title: 'OpenFeature Web Provider', - }, - server: { - description: "Change in the server provider", - title: 'OpenFeature Server Provider', - }, - ['client-http']: { - description: "Change in the confidence HTTP Client", - title: 'Confidence HTTP client', - }, - react: { - description: "Change in the React integration", - title: 'Integration React', - }, - examples: { - description: "Change to an example app", - title: 'Example', - } - } - }, - }, - }, + extends:['@commitlint/config-conventional'] }