Skip to content

Solid

Package: @santi020k/eslint-config-solid

Use the Solid package for SolidJS applications that need framework-specific linting alongside the shared base config.

Install

bash
npm install -D @santi020k/eslint-config-solid

Configure

js
import { eslintConfig } from '@santi020k/eslint-config-basic'
import solid from '@santi020k/eslint-config-solid'

export default eslintConfig({
  typescript: true,
  frameworks: {
    solid
  }
})

What It Adds

  • SolidJS-specific framework rules.
  • A modular install path that keeps non-Solid projects lean.
  • Clean composition with TypeScript and optional integrations.

Notes

  • Solid projects often combine the framework package with TypeScript support.
  • Optional tooling such as Prettier, Vitest, Storybook, or Markdown can still be added through enums from the main package.

Built by Santi020k. Repo and personal site linked throughout the docs.