Lint
vp lint lints code with Oxlint.
Overview
vp lint is built on Oxlint, the Oxc linter. Oxlint is designed as a fast replacement for ESLint for most frontend projects and ships with built-in support for core ESLint rules and many popular community rules.
Use vp lint to lint your project, and vp check to format, lint and type-check all at once.docs/guide/fmt.md
Usage
vp lint
vp lint --fix
vp lint --type-awareConfiguration
Put lint configuration directly in the lint block in vite.config.ts so all your configuration stays in one place. We do not recommend using oxlint.config.ts or .oxlintrc.json with Vite+.
For the upstream rule set, options, and compatibility details, see the Oxlint docs.
import { defineConfig } from 'vite-plus';
export default defineConfig({
lint: {
ignorePatterns: ['dist/**'],
options: {
typeAware: true,
typeCheck: true,
},
},
});Type-Aware Linting
We recommend enabling both typeAware and typeCheck in the lint block:
typeAware: trueenables rules that require TypeScript type informationtypeCheck: trueenables full type checking during linting
This path is powered by tsgolint on top of the TypeScript Go toolchain. It gives Oxlint access to type information and allows type checking directly via vp lint and vp check.
JS Plugins
If you are migrating from ESLint and still depend on a few critical JavaScript-based ESLint plugins, Oxlint has JS plugin support that can help you keep those plugins running while you complete the migration.