Skip to main content

ESLint

ESLint is available for projects that need specific plugins not yet covered by Biome (e.g. migrating a large existing config, or ecosystem-specific rules).

Usage

// eslint.config.js
import baseConfig from '@rtorcato/js-tooling/eslint/base'

export default [
...baseConfig,
// Add project-specific rules
]

For Next.js projects:

// eslint.config.js
import nextjsConfig from '@rtorcato/js-tooling/eslint/nextjs'

export default [
...nextjsConfig,
]

Available presets

ExportIncludes
eslint/baseJS/TS rules, import ordering, airbnb base
eslint/nextjsBase + Next.js specific rules