Skip to content

Commit 97c4508

Browse files
committed
Update deps
1 parent a3af6b5 commit 97c4508

File tree

7 files changed

+279
-251
lines changed

7 files changed

+279
-251
lines changed

biome.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
33
"files": {
4-
"ignore": [
5-
"**/.git",
6-
"**/.github",
7-
"**/.husky",
8-
"**/.tap",
9-
"**/.vscode",
10-
"**/package.json",
11-
"**/package-lock.json"
4+
"includes": [
5+
"**",
6+
"!**/.git",
7+
"!**/.github",
8+
"!**/.husky",
9+
"!**/.tap",
10+
"!**/.vscode",
11+
"!**/package.json",
12+
"!**/package-lock.json"
1213
]
1314
},
1415
"formatter": {

eslint.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ module.exports = [
3030
includeIgnoreFile(gitignorePath),
3131
{
3232
name: 'Imported biome.json ignore patterns',
33-
ignores: biomeConfig.files.ignore.map(convertIgnorePatternToMinimatch)
33+
ignores: biomeConfig.files.includes
34+
.filter(p => p.startsWith('!'))
35+
.map(convertIgnorePatternToMinimatch)
3436
},
3537
{
3638
...js.configs.recommended,

0 commit comments

Comments
 (0)