From 54bc09659f5be9b6717d3a7542da8ce7a6fecce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20K=C3=A4gy?= Date: Tue, 14 Apr 2020 15:43:15 +0200 Subject: [PATCH] Fix - Add `node_modules` to `.eslintignore` file This is being added to the `node_modules` don't get scanned by `eslint`. This caused an issue when using `npm link` locally to test components. --- .eslintignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintignore b/.eslintignore index 72133de..d2a81cd 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,3 +4,4 @@ assets/js/frontend/vendor assets/js/shared/vendor webpack.config.babel.js tests +node_modules