From b16d5f494079a299d24b883c09f1a142e46cab7d Mon Sep 17 00:00:00 2001 From: Lukas Korte Date: Wed, 24 Nov 2021 14:48:29 +0100 Subject: [PATCH] 2.0.3 --- index.ts | 1 + package-lock.json | 4 ++-- package.json | 2 +- react.ts | 1 - 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/index.ts b/index.ts index 3773aee..7250781 100644 --- a/index.ts +++ b/index.ts @@ -23,6 +23,7 @@ const config: Linter.Config = { }, }, ], + '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-unused-vars': ['error', { varsIgnorePattern: '^_' }], 'arrow-body-style': ['error', 'as-needed'], 'import/no-default-export': 'error', diff --git a/package-lock.json b/package-lock.json index e781002..c3bef93 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "eslint-config-incloud", - "version": "2.0.2", + "version": "2.0.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "eslint-config-incloud", - "version": "2.0.2", + "version": "2.0.3", "license": "MIT", "dependencies": { "@types/eslint": "^7.28.2" diff --git a/package.json b/package.json index 8885757..7e339c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-incloud", - "version": "2.0.2", + "version": "2.0.3", "description": "INCLOUD Standard ESLint Config", "main": "index.js", "types": "index.d.ts", diff --git a/react.ts b/react.ts index 78eb20a..69b09cf 100644 --- a/react.ts +++ b/react.ts @@ -3,7 +3,6 @@ import { Linter } from 'eslint'; const config: Linter.Config = { extends: ['react-app', './index'], rules: { - '@typescript-eslint/explicit-module-boundary-types': 'off', 'no-console': ['error', { allow: ['error', 'warn'] }], }, };