We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3c8ade commit 0b154d4Copy full SHA for 0b154d4
src/cli-validator/utils/preprocessFile.js
@@ -14,5 +14,8 @@ module.exports = function(originalFile) {
14
const solidus = '/';
15
processedFile = processedFile.replace(escapedSolidus, solidus);
16
17
+ // Another problematic character is #9d - replace with space
18
+ processedFile = processedFile.replace(/\x9d/g, ' ');
19
+
20
return processedFile;
21
};
0 commit comments