From 70c50ed42081755af47b380e89965ac0393fdc59 Mon Sep 17 00:00:00 2001 From: Julian Geywitz Date: Fri, 6 Aug 2021 11:20:59 +0200 Subject: [PATCH] eslint now ignores the build directory --- web/.eslintrc.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/.eslintrc.js b/web/.eslintrc.js index bbd6078..0e0dfac 100644 --- a/web/.eslintrc.js +++ b/web/.eslintrc.js @@ -23,5 +23,8 @@ module.exports = { "prettier/@typescript-eslint", "plugin:prettier/recommended" ], - rules: { "react/display-name": "off" } + rules: { "react/display-name": "off" }, + ignorePatterns: [ + "build" + ] }; \ No newline at end of file