From 89251754d02e9ea095b4b888f1cdb979a7f43873 Mon Sep 17 00:00:00 2001 From: PythonCoderAS <13932583+PythonCoderAS@users.noreply.github.com> Date: Tue, 28 Jun 2022 17:57:28 -0400 Subject: [PATCH 1/3] patch: Update releaserc.json --- .releaserc.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.releaserc.json b/.releaserc.json index 46ce976..952f2fc 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -3,6 +3,9 @@ "master" ], "plugins": [ + "@semantic-release/commit-analyzer", + "@semantic-release/release-notes-generator", + "@semantic-release/npm", [ "@semantic-release/git", { @@ -17,9 +20,6 @@ { "assets": [] } - ], - "@semantic-release/commit-analyzer", - "@semantic-release/release-notes-generator", - "@semantic-release/npm" + ] ] } From 9cbbab2bdd5f6947439e6700ed10a1c652cceda5 Mon Sep 17 00:00:00 2001 From: PythonCoderAS <13932583+PythonCoderAS@users.noreply.github.com> Date: Tue, 28 Jun 2022 18:01:16 -0400 Subject: [PATCH 2/3] fix: Disable `@typescript-eslint/no-var-requires` --- index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.ts b/index.ts index 7ce1935..028c921 100644 --- a/index.ts +++ b/index.ts @@ -11,6 +11,7 @@ const config: BaseConfig = { "no-undef": "off", "import/no-mutable-exports": "off", "import/no-import-module-exports": "off", + "@typescript-eslint/no-var-requires": "off", }, }; From b545a943d0e5de0ab9e49b4ae720ef58557e18b7 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 28 Jun 2022 22:02:20 +0000 Subject: [PATCH 3/3] chore(release): 1.1.2 [skip ci] ## [1.1.2](https://github.com/PythonCoderAS/eslint-config-pythoncoderas-combo/compare/v1.1.1...v1.1.2) (2022-06-28) ### Bug Fixes * Disable `@typescript-eslint/no-var-requires` ([9cbbab2](https://github.com/PythonCoderAS/eslint-config-pythoncoderas-combo/commit/9cbbab2bdd5f6947439e6700ed10a1c652cceda5)) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 45a30e9..ec85a80 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-pythoncoderas-combo", - "version": "1.1.0", + "version": "1.1.2", "description": "Combo config that I will be using in most of my projects.", "main": "dist/index.js", "types": "dist/index.d.ts",