From 97b203893ec8e853f2f14ce2a6d023bc4eecd463 Mon Sep 17 00:00:00 2001 From: Ute Weiss Date: Fri, 27 Aug 2021 09:26:15 +0200 Subject: [PATCH] fix: ignore some files when linting Signed-off-by: Ute Weiss --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 55097724..e16c79d8 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -185,5 +185,5 @@ module.exports = { 'use-isnan': 'error', 'valid-typeof': 'off', }, - ignorePatterns: ['dist', 'tsconfig.json', 'tsconfig.eslint.json'], + ignorePatterns: ['dist', 'tsconfig.json', 'tsconfig.eslint.json', 'package.json', 'package-lock.json', 'ort'], };