Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@mortend
Copy link
Member

@mortend mortend commented May 28, 2023

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