Skip to content

Commit f5c2f61

Browse files
committed
Update .gitignore and biome.json configuration
- Added new entries to .gitignore to exclude .cache and pspdfkit-lib directories. - Updated biome.json to include 'ignoreUnknown' option and enabled version control system settings for Git, allowing the use of the ignore file.
1 parent 052be51 commit f5c2f61

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ node_modules/
22
test-results
33
playwright-report
44
/blob-report/
5-
playwright/.cache/
5+
.cache
6+
pspdfkit-lib/

biome.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
{
22
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
33
"files": {
4-
"ignore": ["examples/angular/.angular/cache/*"]
4+
"ignore": ["examples/angular/.angular/cache/*"],
5+
"ignoreUnknown": true
56
},
67
"formatter": {
78
"indentStyle": "space",
89
"indentWidth": 2
10+
},
11+
"vcs": {
12+
"enabled": true,
13+
"clientKind": "git",
14+
"useIgnoreFile": true
915
}
1016
}

0 commit comments

Comments
 (0)