replaced tabs by spaces for some folders with sed script #364
No reviewers
Labels
No Label
API Change
Breaking API Change
bug
build
cosmetics
Documentation
duplicate
feature
help wanted
hotfix
invalid
question
Refactor
Tests
wontfix
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: fsfw/fsfw#364
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "mueller/first-tabs-to-spaces"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I already had mixed up indentation in some other files. Maybe it would be a good idea to use spaces instead of tabs consistently.
Most programming languages use Spaces and there are some other advantages (https://wiki.c2.com/?TabsVersusSpaces).
I used the following sed script to apply the changes per folder:
Or recursively
the
-i.orig
can be replaced with-i''
to not create backup files.replaced tabs by spaces with sed scriptto replaced tabs by spaces for some folders with sed script