Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 2 commits into from
May 28, 2023
Merged

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