Skip to content
Draft
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: 0 additions & 3 deletions .github/workflows/tests-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ jobs:
- name: Oxlint
run: pnpm lint:oxlint
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '26.1.0' }}
- name: ESLint compatibility
run: pnpm lint:eslint --output-style=stream
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '26.1.0' }}
- name: Type-check
run: pnpm nx run-many --all --skip-nx-cache --target=type-check --output-style=stream
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '26.1.0' }}
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ jobs:
run: pnpm prettier
- name: Oxlint
run: pnpm lint:oxlint
- name: ESLint compatibility
run: pnpm lint:eslint --output-style=stream

bundle:
name: 'Bundle'
Expand Down
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ web_modules/
# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

Expand Down Expand Up @@ -175,9 +172,6 @@ testing.mjs
# NX
.nx

# ESLint reports
eslint-report.json

# Generated docs
docs/api
docs-shopify.dev/commands/interfaces/
Expand Down
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode","dbaeumer.vscode-eslint","nrwl.angular-console","vitest.explorer"]
"recommendations": ["esbenp.prettier-vscode", "oxc.oxc-vscode", "nrwl.angular-console", "vitest.explorer"]
}
5 changes: 2 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"**/node_modules": true
},
"editor.formatOnSave": false,
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"oxc.enable": true,
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
Expand All @@ -31,9 +31,8 @@
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
"source.fixAll.oxc": "explicit"
},
"eslint.workingDirectories": [{ "pattern": "packages/*" }],
"vitest.enable": true,
"testing.automaticallyOpenPeekView": "never",
"javascript.preferences.importModuleSpecifierEnding": "js",
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ If the change is not ready to be public, do not add a changeset.
- [docs/cli/conventions.md](docs/cli/conventions.md)
- [docs/cli/cross-os-compatibility.md](docs/cli/cross-os-compatibility.md)
- [docs/cli/debugging.md](docs/cli/debugging.md)
- [docs/cli/eslint-rules.md](docs/cli/eslint-rules.md)
- [docs/cli/oxlint-rules.md](docs/cli/oxlint-rules.md)
- [docs/cli/faq.md](docs/cli/faq.md)
- [docs/cli/get-started.md](docs/cli/get-started.md)
- [docs/cli/naming-conventions.md](docs/cli/naming-conventions.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The list below contains valuable resources for people interested in contributing
* [Conventions](./cli/conventions.md)
* [Performance](./cli/performance.md)
* [Debugging](./cli/debugging.md)
* [ESLint rules](./cli/eslint-rules.md)
* [Oxlint rules](./cli/oxlint-rules.md)
* [Testing strategy](./cli/testing-strategy.md)
* [Cross-OS compatibility](./cli/cross-os-compatibility.md)
* [Troubleshooting](./cli/troubleshooting.md)
Expand Down
4 changes: 2 additions & 2 deletions docs/cli/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ Besides the scripts for building and running the CLIs, there are others that mig
- `pnpm test`: Runs the tests of all the packages.
- `pnpm prettier`: Checks formatting for all linted source files.
- `pnpm prettier:fix`: Formats all linted source files.
- `pnpm lint`: Runs Prettier, Oxlint, and ESLint compatibility checks for all the packages.
- `pnpm lint:fix`: Runs Prettier, Oxlint, and ESLint compatibility checks and fixes supported issues.
- `pnpm lint`: Runs Prettier and Oxlint checks for all the packages.
- `pnpm lint:fix`: Runs Prettier and Oxlint and fixes supported issues.
- `pnpm type-check`: Type-checks all the packagesusing the Typescript `tsc` tool.
- `pnpm clean`: Removes the `dist` directory from all the packages.

Expand Down
8 changes: 4 additions & 4 deletions docs/cli/eslint-rules.md → docs/cli/oxlint-rules.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ESLint Rules
# Oxlint Rules

To ensure the contributions to the project follow the conventions,
the project leverages [ESLint](https://eslint.org/) with third-party and local rules.
This page contains a list of all the local rules alongside the convention they enforce.
To ensure contributions follow the project's conventions, the project uses
[Oxlint](https://oxc.rs/docs/guide/usage/linter.html) with native and local rules.
This page lists the local rules and the conventions they enforce.

### `command-flags-with-env`

Expand Down
4 changes: 0 additions & 4 deletions eslint.codegen.config.js

This file was deleted.

268 changes: 0 additions & 268 deletions eslint.config.js

This file was deleted.

Loading
Loading