Derived Modular Arch
Tooling

Oxlint

@derived-modular/oxlint-plugin JS plugin — same rules as ESLint, for Oxlint.

@derived-modular/oxlint-plugin wraps rules from @derived-modular/eslint-plugin for Oxlint JS plugins. Same semantics, higher speed — Oxlint is tuned for fast linting of large codebases.

Status: alpha. The Oxlint JS plugins API may still change.

Like other linters — not a replacement for dma check.

Installation

npm install -D @derived-modular/oxlint-plugin oxlint

Peer dependency: oxlint >= 1.0.0.

Configuration

// .oxlintrc.json
{
  "extends": ["./node_modules/@derived-modular/oxlint-plugin/configs/recommended.json"]
}

Rules are available under the dma/* prefix, e.g. dma/no-barrel, dma/layer-direction.

Coverage

RuleOxlintdma check
layer-direction
feature-to-feature
public-api
no-barrel
no-cycle
inbound predicates
dma doctor

Oxlint uses the same @derived-modular/boundaries as ESLint — file-scoped rule accuracy is comparable to the ESLint plugin, not Biome heuristics.

Oxlint vs ESLint

OxlintESLint
SpeedHigher on large reposStandard
DMA plugin maturityAlphaStable
Graph rulesNo (same as ESLint)No
When to useAlready on Oxlint, need speedDefault choice

Biome-only projects

If the linter is Biome only — see Biome. Oxlint and Biome together are usually unnecessary.

What's next

On this page