Skip to content

Commit d28d5c7

Browse files
committed
chore: Update biome.json to ignore package.json files
- Add "**/package.json" to the ignore list in biome.json to prevent linting on package files - Ensure consistency in ignoring generated files across the project This change enhances the maintainability of the project's configuration by reducing unnecessary linting checks.
1 parent 4b6086a commit d28d5c7

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"files": {
99
"ignoreUnknown": false,
10-
"ignore": [".turbo", "yarn.lock", "./apps/docs/storybook-static", "./packages/medusa-forms/dist"]
10+
"ignore": [".turbo", "yarn.lock", "./apps/docs/storybook-static", "./packages/medusa-forms/dist", "**/package.json"]
1111
},
1212
"organizeImports": { "enabled": true },
1313
"formatter": {

packages/medusa-forms/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
"main": "./dist/cjs/index.cjs",
55
"module": "./dist/esm/index.js",
66
"types": "./dist/types/index.d.ts",
7-
"files": [
8-
"dist"
9-
],
7+
"files": ["dist"],
108
"exports": {
119
".": {
1210
"import": {

0 commit comments

Comments
 (0)