From dec6c3271962c4b0db8fe6fa6a5b6adaae365dd3 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sun, 30 Apr 2023 00:03:35 +0300 Subject: [PATCH] Fix loading eslintrc (cherry picked from commit b0773ae7e3f860ff381d8d98d23d612609048e38) Closes #3591 --- frontend/.eslintrc.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/.eslintrc.js b/frontend/.eslintrc.js index 06695aac2..0c372912a 100644 --- a/frontend/.eslintrc.js +++ b/frontend/.eslintrc.js @@ -1,14 +1,17 @@ const fs = require('fs'); +const path = require('path'); + +const frontendFolder = __dirname; const dirs = fs - .readdirSync('frontend/src', { withFileTypes: true }) + .readdirSync(path.join(frontendFolder, 'src'), { withFileTypes: true }) .filter((dirent) => dirent.isDirectory()) .map((dirent) => dirent.name) .join('|'); -const frontendFolder = __dirname; - module.exports = { + root: true, + parser: '@babel/eslint-parser', env: {