-
-
Notifications
You must be signed in to change notification settings - Fork 293
refactor(cli): rename oxlint to oxc #977
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
e39b363
24e1814
f8e9392
b3d4ed6
fd3ce6d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ import { shouldSkipExternalCommands } from "../../utils/external-commands"; | |
| import { getPackageRunnerPrefix } from "../../utils/package-runner"; | ||
| import { cliLog, createSpinner } from "../../utils/terminal-output"; | ||
|
|
||
| type UltraciteLinter = "biome" | "eslint" | "oxlint"; | ||
| type UltraciteLinter = "biome" | "eslint" | "oxc"; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: No, Ultracite CLI does not accept "oxc" as a --linter option. The supported linter options are "biome", "eslint", and "oxlint" (part of the Oxc ecosystem). "oxc" refers to the broader Oxc project, but the specific linter is oxlint, used with commands like npx ultracite init --linter oxlint. Citations:
Revert type change: "oxc" is not a valid Ultracite CLI linter option. The change from |
||
|
|
||
| type UltraciteEditor = | ||
| | "vscode" | ||
|
|
@@ -65,7 +65,7 @@ type UltraciteInitArgsInput = { | |
| const LINTERS = { | ||
| biome: { label: "Biome", hint: "Fast formatter and linter" }, | ||
| eslint: { label: "ESLint", hint: "Traditional JavaScript linter" }, | ||
| oxlint: { label: "Oxlint", hint: "Oxidation compiler linter" }, | ||
| oxc: { label: "Oxc", hint: "Oxidation compiler linter" }, | ||
| } as const; | ||
|
|
||
| const EDITORS = { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.