Skip to content

Commit f857684

Browse files
committed
fix: correct prettier configuration in Roo-Code directory
- Remove invalid 'ignore' property from .prettierrc.json (not a valid prettier option) - Create proper .prettierignore file with ignore patterns - Resolves CI prettier check failures and formatting issues
1 parent a317425 commit f857684

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

Roo-Code/.prettierignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Ignore artifacts:
2+
node_modules
3+
dist
4+
build
5+
out
6+
.next
7+
.venv
8+
pnpm-lock.yaml

Roo-Code/.prettierrc.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
"useTabs": true,
44
"printWidth": 120,
55
"semi": false,
6-
"bracketSameLine": true,
7-
"ignore": ["node_modules", "dist", "build", "out", ".next", ".venv", "pnpm-lock.yaml"]
6+
"bracketSameLine": true
87
}

0 commit comments

Comments
 (0)