1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-31 07:33:23 +00:00

Add folders to whitelist (#3994)

This commit is contained in:
Oscar Hinton
2022-11-10 15:08:04 +01:00
committed by GitHub
parent 4debb6647c
commit f7d5ee4f9e
2 changed files with 35 additions and 22 deletions

View File

@@ -25,7 +25,7 @@ jobs:
- name: Lint filenames (no capital characters)
run: |
find . -type f -name "*[[:upper:]]*" \
find . -type f,d -name "*[[:upper:]]*" \
! -path "./node_modules/*" \
! -path "./coverage/*" \
! -path "*/dist/*" \
@@ -33,6 +33,8 @@ jobs:
! -path "*/target/*" \
! -path "./.git/*" \
! -path "*/.DS_Store" \
! -path "*/*locales/*" \
! -path "./.github/*" \
> tmp.txt
diff <(sort .github/whitelist-capital-letters.txt) <(sort tmp.txt)