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
Updated by Gerrit Code Review over 2 years ago
- Status changed from New to Under Review
Patch set 2 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/74872
Updated by Gerrit Code Review over 2 years ago
Patch set 3 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/74872
Updated by Gerrit Code Review over 2 years ago
Patch set 4 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/74872
Updated by Sybille Peters over 2 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 32f7784c90bdbf1d2976a7bf3fe7c51d6c3ffa9f.
Actions