Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

eslint-types/define-config-plugin-types

Folders and files

NameName
Last commit message
Last commit date
Apr 4, 2024
Mar 18, 2024
Apr 4, 2024
Oct 18, 2023
Apr 4, 2024
Oct 18, 2023
Oct 18, 2023
Oct 18, 2023
Jan 1, 2024
Nov 2, 2023
Apr 4, 2024
Apr 4, 2024
Oct 10, 2023
Feb 10, 2024

Repository files navigation

Build Status License: MIT Code Style: Prettier Donate: PayPal

@eslint-types/*

This repository is a monorepo that contains types for eslint-define-config.

All supported packages

You can install them e.g. via npm install @eslint-types/import which will contain types for the eslint-plugin-import plugin.
Then you can use them in your .eslintrc.cjs config like this:

// @ts-check
const { defineConfig } = require('eslint-define-config');

/// <reference types="@eslint-types/import" />

module.exports = defineConfig({
  // ...
});