Skip to content

Commit

Permalink
Merge pull request #92 from GreasySlug/main
Browse files Browse the repository at this point in the history
Replace `Rome` with `Biome`
  • Loading branch information
mtshiba authored May 23, 2024
2 parents a59528b + 0d155ee commit 91427c6
Show file tree
Hide file tree
Showing 13 changed files with 622 additions and 616 deletions.
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none"
"python.formatting.provider": "none",
"[typescript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome"
}
}
2 changes: 1 addition & 1 deletion extension/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["amodio.tsl-problem-matcher", "rome.rome"]
"recommendations": ["amodio.tsl-problem-matcher", "biomejs.biome"]
}
2 changes: 1 addition & 1 deletion extension/.vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ src/**
**/*.ts
.gitignore
webpack.config.js
rome.json
biome.json
31 changes: 31 additions & 0 deletions extension/biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
"organizeImports": {
"enabled": true
},
"formatter": {
"enabled": true,
"indentStyle": "tab",
"lineWidth": 120,
"ignore": ["dist/**", "out/**", ".vscode-test/**", ".vscode/**"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
},
"ignore": ["dist/**", "out/**", ".vscode-test/**", ".vscode/**"]
},
"javascript": {
"formatter": {
"indentStyle": "tab",
"lineWidth": 120
}
},
"json": {
"formatter": {
"indentStyle": "tab",
"lineWidth": 120
}
}
}
Loading

0 comments on commit 91427c6

Please sign in to comment.