From d8e7103dc4d2dc9fd33630a5f671ff56a50b187d Mon Sep 17 00:00:00 2001 From: PythonCoderAS <13932583+PythonCoderAS@users.noreply.github.com> Date: Sun, 12 Jun 2022 16:03:09 -0400 Subject: [PATCH] Disable `no-warning-comments` --- .eslintrc | 3 +-- index.ts | 3 ++- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.eslintrc b/.eslintrc index 5c719a9..29fcb74 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,6 +1,5 @@ { "extends": [ - "./dist/index.js", - "pythoncoderas" + "./dist/index.js" ] } diff --git a/index.ts b/index.ts index 975d55c..c7f301a 100644 --- a/index.ts +++ b/index.ts @@ -7,7 +7,8 @@ const config: BaseConfig = { rules: { "import/extensions": "off", "no-negated-condition": "off", - "no-restricted-syntax": "off" + "no-restricted-syntax": "off", + "no-warning-comments": "off", }, }; diff --git a/package.json b/package.json index 7a047b3..cc83026 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-pythoncoderas-combo", - "version": "1.0.2", + "version": "1.0.3", "description": "Combo config that I will be using in most of my projects.", "main": "dist/index.js", "types": "dist/index.d.ts",