Skip to content

Commit

Permalink
fix(biome): disable package.json formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubilmax committed Jul 17, 2024
1 parent ec2d22d commit ede470f
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 12 deletions.
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"files": {
"ignore": ["out", "lib", "dist", ".pnp.*", ".vscode"]
"ignore": ["out", "lib", "dist", ".pnp.*", ".vscode", "package.json"]
},
"formatter": {
"enabled": true,
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"node": ">=18"
},
"packageManager": "yarn@4.3.1",
"workspaces": ["packages/*"],
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "husky install",
"lint": "biome check",
Expand Down
9 changes: 7 additions & 2 deletions packages/blue-sdk-ethers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"author": "Morpho Association <contact@morpho.org>",
"license": "MIT",
"main": "src/index.ts",
"files": ["lib"],
"files": [
"lib"
],
"scripts": {
"prepublish": "yarn build",
"build": "tsc --build tsconfig.build.json",
Expand Down Expand Up @@ -42,7 +44,10 @@
]
},
"testRegex": "(/src/.*|(\\.|/)(test|spec)+)\\.test\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["js", "ts"],
"moduleFileExtensions": [
"js",
"ts"
],
"preset": "ts-jest"
}
}
9 changes: 7 additions & 2 deletions packages/blue-sdk-viem/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"author": "Morpho Association <contact@morpho.org>",
"license": "MIT",
"main": "src/index.ts",
"files": ["lib"],
"files": [
"lib"
],
"scripts": {
"prepublish": "yarn build",
"build": "tsc --build tsconfig.build.json",
Expand Down Expand Up @@ -39,7 +41,10 @@
]
},
"testRegex": "(/src/.*|(\\.|/)(test|spec)+)\\.test\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["js", "ts"],
"moduleFileExtensions": [
"js",
"ts"
],
"preset": "ts-jest"
}
}
9 changes: 7 additions & 2 deletions packages/blue-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"author": "Morpho Association <contact@morpho.org>",
"license": "MIT",
"main": "src/index.ts",
"files": ["lib"],
"files": [
"lib"
],
"scripts": {
"prepublish": "yarn build",
"build": "tsc --build tsconfig.build.json",
Expand Down Expand Up @@ -39,7 +41,10 @@
]
},
"testRegex": "(/src/.*|(\\.|/)(test|spec)+)\\.test\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["js", "ts"],
"moduleFileExtensions": [
"js",
"ts"
],
"preset": "ts-jest"
}
}
9 changes: 7 additions & 2 deletions packages/morpho-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name": "@morpho-org/morpho-test",
"version": "1.0.6",
"main": "src/index.ts",
"files": ["lib"],
"files": [
"lib"
],
"author": "Morpho Association <contact@morpho.org>",
"license": "MIT",
"scripts": {
Expand Down Expand Up @@ -53,7 +55,10 @@
]
},
"testRegex": "(/src/.*|(\\.|/)(test|spec)+)\\.test\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["js", "ts"],
"moduleFileExtensions": [
"js",
"ts"
],
"preset": "ts-jest"
}
}
9 changes: 7 additions & 2 deletions packages/morpho-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"author": "Morpho Association <contact@morpho.org>",
"license": "MIT",
"main": "src/index.ts",
"files": ["lib"],
"files": [
"lib"
],
"scripts": {
"prepublish": "yarn build",
"build": "tsc --build tsconfig.build.json",
Expand Down Expand Up @@ -35,7 +37,10 @@
]
},
"testRegex": "(/src/.*|(\\.|/)(test|spec)+)\\.test\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["js", "ts"],
"moduleFileExtensions": [
"js",
"ts"
],
"preset": "ts-jest"
}
}

0 comments on commit ede470f

Please sign in to comment.