Fix loading eslintrc

(cherry picked from commit b0773ae7e3f860ff381d8d98d23d612609048e38)

Closes #3591
This commit is contained in:
Bogdan 2023-04-30 00:03:35 +03:00
parent 89972b8b66
commit dec6c32719
1 changed files with 6 additions and 3 deletions

View File

@ -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: {