From c8a4f8d78864f672e8197cd718418e01d04da5fe Mon Sep 17 00:00:00 2001 From: sup39 Date: Fri, 17 Feb 2023 03:20:45 +0900 Subject: [PATCH] [v0.1.5] add no-undef --- index.js | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 1342b36..897ee46 100644 --- a/index.js +++ b/index.js @@ -11,6 +11,7 @@ module.exports = { parser: '@typescript-eslint/parser', rules: { 'no-use-before-define': 'off', + 'no-undef': 'off', 'no-redeclare': 'off', '@typescript-eslint/no-redeclare': ['error'], 'no-unused-vars': 'off', diff --git a/package.json b/package.json index ff4b3a4..86bf08d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sup39/eslint-config-typescript", - "version": "0.1.4", + "version": "0.1.5", "main": "index.js", "license": "MIT", "description": "Typescript eslint config for sup39",