Skip to content

Commit 95d9be2

Browse files
committed
Update deps
1 parent e78fa17 commit 95d9be2

File tree

5 files changed

+416
-409
lines changed

5 files changed

+416
-409
lines changed

biome.json

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
{
22
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
33
"files": {
4-
"ignore": [
5-
"**/.DS_Store",
6-
"**/._.DS_Store",
7-
"**/.env",
8-
"**/.git",
9-
"**/.github",
10-
"**/.husky",
11-
"**/.nvm",
12-
"**/.rollup.cache",
13-
"**/.type-coverage",
14-
"**/.vscode",
15-
"**/coverage",
16-
"**/package.json",
17-
"**/package-lock.json",
18-
"external/@coana-tech"
4+
"includes": [
5+
"**",
6+
"!**/.DS_Store",
7+
"!**/._.DS_Store",
8+
"!**/.env",
9+
"!**/.git",
10+
"!**/.github",
11+
"!**/.husky",
12+
"!**/.nvm",
13+
"!**/.rollup.cache",
14+
"!**/.type-coverage",
15+
"!**/.vscode",
16+
"!**/coverage",
17+
"!**/package.json",
18+
"!**/package-lock.json",
19+
"!external/@coana-tech"
1920
],
2021
"maxSize": 8388608
2122
},

eslint.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ const biomeConfigPath = path.join(rootPath, BIOME_JSON)
3434
const biomeConfig = require(biomeConfigPath)
3535
const biomeIgnores = {
3636
name: 'Imported biome.json ignore patterns',
37-
ignores: biomeConfig.files.ignore.map(convertIgnorePatternToMinimatch),
37+
ignores: biomeConfig.files.includes
38+
.filter(p => p.startsWith('!'))
39+
.map(p => convertIgnorePatternToMinimatch(p.slice(1))),
3840
}
3941

4042
const gitignorePath = path.join(rootPath, GITIGNORE)

0 commit comments

Comments
 (0)