Skip to content

Commit 090bdb7

Browse files
authored
chore: update lint scripts to remove --fix option in package.json files (#772)
1 parent 94fa7e6 commit 090bdb7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/synapse-playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
9-
"lint": "tsc --noEmit && biome check --fix .",
9+
"lint": "tsc --noEmit && biome check .",
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {

examples/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"private": true,
77
"main": "src/index.ts",
88
"scripts": {
9-
"lint": "tsc && biome check --fix .",
9+
"lint": "tsc && biome check .",
1010
"test": "echo \"Error: no test specified\" && exit 1"
1111
},
1212
"keywords": [],

utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "0.0.1",
55
"private": true,
66
"scripts": {
7-
"lint": "biome check --fix ."
7+
"lint": "biome check ."
88
},
99
"dependencies": {
1010
"@filoz/synapse-core": "workspace:*",

0 commit comments

Comments
 (0)