From d163690497b9a3a9d8e3ceb69c2a26d2c426757d Mon Sep 17 00:00:00 2001 From: dec0dOS Date: Mon, 29 Mar 2021 00:28:46 +0300 Subject: [PATCH] refactor: moved commitlint config file to package.json --- commitlint.config.js | 1 - package.json | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) delete mode 100644 commitlint.config.js diff --git a/commitlint.config.js b/commitlint.config.js deleted file mode 100644 index 5073c20..0000000 --- a/commitlint.config.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = { extends: ["@commitlint/config-conventional"] }; diff --git a/package.json b/package.json index c4f8ad9..cda6611 100644 --- a/package.json +++ b/package.json @@ -21,5 +21,10 @@ "nodemon": "^2.0.7", "rimraf": "^3.0.2", "standard-version": "^9.1.1" + }, + "commitlint": { + "extends": [ + "@commitlint/config-conventional" + ] } }