Remove dfnshelper global for eslint

This commit is contained in:
Bill Thornton
2022-11-04 02:24:30 -04:00
parent 1473a793e5
commit 968bfb52fb
2 changed files with 5 additions and 4 deletions
+5 -3
View File
@@ -121,10 +121,12 @@ const config = {
let name = `node_modules.${parts[0]}`;
if (parts[1]) {
name += `.${parts[1]}`;
if (parts[1] === 'locale' && parts[2]) {
name += `.${parts[2]}`;
}
}
if (parts[1] === 'locale') {
name += `.${parts[2]}`;
}
return name;
}