Skip to content

whitespace fix-up pass (beta-3.0) - #490

Merged
mortend merged 2 commits into
fuse-open:beta-3.0from
mortend:whitespace
May 28, 2023
Merged

whitespace fix-up pass (beta-3.0)#490
mortend merged 2 commits into
fuse-open:beta-3.0from
mortend:whitespace

Conversation

@mortend

@mortend mortend commented May 28, 2023

Copy link
Copy Markdown
Member

trim trailing whitespace

This removes needless trailing whitespace in relevant files (excluding
some tests and imported code), by running the following command (and
cleaning up after):

find . -not \( -name .git -prune \) -type f -print0 | \
    LANG=C LC_CTYPE=C xargs -0 sed -i '' -E "s/[[:space:]]*$//"

normalize indentation whitespace

Many files still contain mixed indentation (spaces AND tabs), so this
commit normalizes intendation to four spaces in relevant files across
the repository (excluding some tests and imported code), making things
nicer and avoiding conflicts when editing these files in the future.

mortend added 2 commits May 28, 2023 15:40
Many files still contain mixed indentation (spaces AND tabs), so this
commit normalizes intendation to four spaces in relevant files across
the repository (excluding some tests and imported code), making things
nicer and avoiding conflicts when editing these files in the future.
This removes needless trailing whitespace in relevant files (excluding
some tests and imported code), by running the following command (and
cleaning up after):

    find . -not \( -name .git -prune \) -type f -print0 | \
        LANG=C LC_CTYPE=C xargs -0 sed -i '' -E "s/[[:space:]]*$//"
@mortend
mortend merged commit daafe0a into fuse-open:beta-3.0 May 28, 2023
@mortend
mortend deleted the whitespace branch May 28, 2023 09:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant