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:
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user