Skip to content

Commit ceae36a

Browse files
committed
Update deps
1 parent 21fad14 commit ceae36a

4 files changed

Lines changed: 386 additions & 384 deletions

File tree

biome.json

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
{
22
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
33
"files": {
4-
"ignore": [
5-
"**/.git",
6-
"**/.github",
7-
"**/.husky",
8-
"**/.tap",
9-
"**/.type-coverage",
10-
"**/.vscode",
11-
"**/coverage",
12-
"**/dist",
13-
"**/package.json",
14-
"**/package-lock.json",
15-
"openapi.json"
4+
"includes": [
5+
"**",
6+
"!**/.git",
7+
"!**/.github",
8+
"!**/.husky",
9+
"!**/.tap",
10+
"!**/.type-coverage",
11+
"!**/.vscode",
12+
"!**/coverage",
13+
"!**/dist",
14+
"!**/package.json",
15+
"!**/package-lock.json",
16+
"!openapi.json"
1617
],
1718
"maxSize": 5242880
1819
},

eslint.config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,9 @@ export default [
171171
includeIgnoreFile(gitignorePath),
172172
{
173173
name: 'Imported biome.json ignore patterns',
174-
ignores: biomeConfig.files.ignore.map(convertIgnorePatternToMinimatch)
174+
ignores: biomeConfig.files.includes
175+
.filter(p => p.startsWith('!'))
176+
.map(p => convertIgnorePatternToMinimatch(p.slice(1)))
175177
},
176178
{
177179
files: ['**/*.{cts,mts,ts}'],

0 commit comments

Comments
 (0)