Skip to content

Commit

Permalink
fix: disabled eslint rule for a failing line
Browse files Browse the repository at this point in the history
  • Loading branch information
calebjclark committed Dec 29, 2020
1 parent ad9f17d commit 749ae1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emulate-browsers/base/lib/DomDiffLoader.ts
Expand Up @@ -30,7 +30,7 @@ function extractFilename(filenames: string[]) {
for (const filename of filenames) {
const matches = filename.match(/^dom-diffs-when-using-([a-z-]+)(-([0-9-]+))?.json$/);
if (!matches) continue;
const [osName, _, osVersion] = matches.slice(1);
const [osName, _, osVersion] = matches.slice(1); // eslint-disable-line @typescript-eslint/naming-convention
filenameMap[osName] = filenameMap[osName] || {};
filenameMap[osName][osVersion || 'ALL'] = filename;
}
Expand Down

0 comments on commit 749ae1e

Please sign in to comment.