Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .eslintignore → .biomeignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ test-*-*/
node_modules/
*.config.js
*.config.ts
templates/
templates/
oclif.manifest.json
54 changes: 27 additions & 27 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"workbench.colorCustomizations": {
"editor.findMatchBorder": "#ffffffcc",
"editor.findMatchForeground": "#ffffff",
"editor.findMatchBackground": "#005500",
"editor.findMatchHighlightBorder": "#ffffff",
"editor.findMatchHighlightBackground": "#000000ee",
"editor.findMatchHighlightForeground": "#ffffffee",
"activityBar.background": "#20303A",
"activityBar.activeBackground": "#20303A",
"activityBar.activeBorder": "#3A2A20",
"activityBar.foreground": "#FBFCFD",
"activityBar.inactiveForeground": "#FBFCFD99",
"activityBarBadge.background": "#3A2A20",
"activityBarBadge.foreground": "#FBFCFD",
"titleBar.activeBackground": "#2D4351",
"titleBar.activeForeground": "#FBFCFD",
"titleBar.inactiveBackground": "#2D435199",
"titleBar.inactiveForeground": "#FBFCFD99",
"sash.hoverBorder": "#20303A",
"commandCenter.border": "#FBFCFD99",
"statusBar.background": "#2D4351",
"statusBar.foreground": "#FBFCFD",
"statusBarItem.hoverBackground": "#283C49",
"statusBarItem.remoteBackground": "#2D4351",
"statusBarItem.remoteForeground": "#FBFCFD"
}
}
"workbench.colorCustomizations": {
"editor.findMatchBorder": "#ffffffcc",
"editor.findMatchForeground": "#ffffff",
"editor.findMatchBackground": "#005500",
"editor.findMatchHighlightBorder": "#ffffff",
"editor.findMatchHighlightBackground": "#000000ee",
"editor.findMatchHighlightForeground": "#ffffffee",
"activityBar.background": "#20303A",
"activityBar.activeBackground": "#20303A",
"activityBar.activeBorder": "#3A2A20",
"activityBar.foreground": "#FBFCFD",
"activityBar.inactiveForeground": "#FBFCFD99",
"activityBarBadge.background": "#3A2A20",
"activityBarBadge.foreground": "#FBFCFD",
"titleBar.activeBackground": "#2D4351",
"titleBar.activeForeground": "#FBFCFD",
"titleBar.inactiveBackground": "#2D435199",
"titleBar.inactiveForeground": "#FBFCFD99",
"sash.hoverBorder": "#20303A",
"commandCenter.border": "#FBFCFD99",
"statusBar.background": "#2D4351",
"statusBar.foreground": "#FBFCFD",
"statusBarItem.hoverBackground": "#283C49",
"statusBarItem.remoteBackground": "#2D4351",
"statusBarItem.remoteForeground": "#FBFCFD"
}
}
4 changes: 2 additions & 2 deletions bin/dev.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env -S node --loader ts-node/esm --disable-warning=ExperimentalWarning

import { execute } from '@oclif/core'
import {execute} from '@oclif/core'

await execute({ development: true, dir: import.meta.url })
await execute({development: true, dir: import.meta.url})
4 changes: 2 additions & 2 deletions bin/run.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env node

import { execute } from '@oclif/core'
import {execute} from '@oclif/core'

// If no arguments provided, default to 'init' command
const args = process.argv.slice(2)
if (args.length === 0) {
process.argv.push('init')
}

await execute({ dir: import.meta.url })
await execute({dir: import.meta.url})
52 changes: 52 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": false
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 120
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "asNeeded",
"trailingCommas": "all",
"bracketSpacing": false,
"jsxQuoteStyle": "double"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"complexity": {
"noForEach": "off"
},
"style": {
"noNonNullAssertion": "off",
"useConst": "warn",
"useNodejsImportProtocol": "off"
},
"suspicious": {
"noExplicitAny": "off"
}
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}
9 changes: 0 additions & 9 deletions eslint.config.mjs

This file was deleted.

Loading