refactor: standardize quote styles to single quotes across all files

This commit is contained in:
2026-05-04 20:39:10 -03:00
committed by hueso
parent af897e7dd4
commit 9c948d7da4
69 changed files with 1839 additions and 1828 deletions

View File

@@ -1,11 +1,11 @@
module.exports = {
process() {
return {
code: `module.exports = {};`,
code: 'module.exports = {};',
};
},
getCacheKey() {
// The output is always the same.
return "svgTransform";
return 'svgTransform';
},
};