[SBA-01] chore: normalize indentation to 2 spaces #130
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
We have some files in the project (.ts) using 4 spaces for tab and other files (.json,*.js) using 2 spaces. This PR normalizes the indentation for all files to be 2 spaces consistently.
This is done in preparation for the upcoming Session Auth PRs that will introduce many new files. There aren't any changes to the actual code or functionality, just whitespace adjusments.
Technical Notes
There are many files changed in the diff. To update all of them, I just set the
tabWidth: 2in.prettierrcand ranyarn prettier-write.Steps to Test
You can just run the CI checks locally to confirm everything still works as expected.
Related Issues & Pull Requests