Actions
Task #97757
closedFix indenting in .html files
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Miscellaneous
Target version:
-
Start date:
2022-06-11
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
12
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
Some .html files contain TABs which are used for indenting.
Indenting should be done with 4 spaces (see .editorconfig).
find typo3/sysext/ -name "*.html" | while read i;do grep -P '\t' $i >/dev/null;if [ $? -eq 0 ];then echo $i;fi;done
Actions