Skip to content

Commit

Permalink
test(estlint): Fix .project.eslintrc.js
Browse files Browse the repository at this point in the history
  • Loading branch information
avoinea committed Nov 15, 2022
1 parent b6d5b79 commit 0f80eca
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .project.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ const projectRootPath = fs.existsSync('./project')
? fs.realpathSync('./project')
: fs.realpathSync('./../../../');
const packageJson = require(path.join(projectRootPath, 'package.json'));
const jsConfig = require(path.join(projectRootPath, 'jsconfig.json'))
.compilerOptions;
const jsConfig = require(path.join(projectRootPath, 'jsconfig.json')).compilerOptions;

const pathsConfig = jsConfig.paths;

let voltoPath = path.join(projectRootPath, 'node_modules/@plone/volto');

Object.keys(pathsConfig).forEach((pkg) => {
Object.keys(pathsConfig).forEach(pkg => {
if (pkg === '@plone/volto') {
voltoPath = `./${jsConfig.baseUrl}/${pathsConfig[pkg][0]}`;
}
Expand All @@ -21,15 +20,11 @@ const AddonConfigurationRegistry = require(`${voltoPath}/addon-registry.js`);
const reg = new AddonConfigurationRegistry(projectRootPath);

// Extends ESlint configuration for adding the aliases to `src` directories in Volto addons
const addonAliases = Object.keys(reg.packages).map((o) => [
const addonAliases = Object.keys(reg.packages).map(o => [
o,
reg.packages[o].modulePath,
]);

const voltoSearchlibPath = path.dirname(
reg.packages['@eeacms/volto-searchlib'].modulePath,
);
const searchlibPath = path.resolve(`${voltoSearchlibPath}/searchlib`);

module.exports = {
extends: `${projectRootPath}/node_modules/@plone/volto/.eslintrc`,
Expand All @@ -39,7 +34,6 @@ module.exports = {
map: [
['@plone/volto', '@plone/volto/src'],
...addonAliases,
['@eeacms/search', searchlibPath],
['@package', `${__dirname}/src`],
['~', `${__dirname}/src`],
],
Expand All @@ -51,3 +45,4 @@ module.exports = {
},
},
};

0 comments on commit 0f80eca

Please sign in to comment.