test262 icon indicating copy to clipboard operation
test262 copied to clipboard

Fix filename linter in Windows

Open lpardosixtosMs opened this issue 1 month ago • 1 comments

When parsing the file names in Windows, tools/lint/lib/collect_files.py produces strings contain backslashes that are later flagged as invalid characters in the file name. This change normalizes the strings to always use forward slashes.

lpardosixtosMs avatar Nov 06 '25 22:11 lpardosixtosMs

Seems like we should use the posixpath module, or else amend the tools/lint/lib/checks/filename.py check to handle Windows paths.

ptomato avatar Nov 19 '25 00:11 ptomato