Skip to content

Commit

Permalink
Change line breaks to LF, replace tab with 2 spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ryma2fhir committed Oct 24, 2023
1 parent 6b70464 commit d00df57
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# normalizes line endings to LF for all text files checked into your repo while leaving local line endings untouched in the working tree:
* text=auto
10 changes: 10 additions & 0 deletions .github/workflows/FindReplaceTabSpace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Replace tab with 2 spaces - test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Find and Replace
run: find ./ -type f -name *.xml -exec sed -i -e ' / /g' {} \;

0 comments on commit d00df57

Please sign in to comment.