From 121b9a8b5a4e066138ccb277ba024c7a5db9e6ef Mon Sep 17 00:00:00 2001 From: Ariel Valentin Date: Mon, 22 Jan 2024 07:04:02 -0600 Subject: [PATCH] squash: Delete commitlint.config.js --- commitlint.config.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 commitlint.config.js diff --git a/commitlint.config.js b/commitlint.config.js deleted file mode 100644 index 1e2ffb534..000000000 --- a/commitlint.config.js +++ /dev/null @@ -1,30 +0,0 @@ -module.exports = { - extends: ['@commitlint/config-conventional'], - rules: { - 'subject-case': [ - 2, - 'never', - [ - 'upper-case', - 'pascal-case', - ] - ], - 'type-enum': [ - 2, - 'always', - [ - 'chore', - 'ci', - 'docs', - 'feat', - 'fix', - 'perf', - 'refactor', - 'revert', - 'squash', - 'style', - 'test' - ] - ] - } -};