Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eslint-types/define-config-plugin-types

Provides several plugin types for eslint-define-config
https://github.com/eslint-types/define-config-plugin-types

eslint types

Last synced: 2 days ago
JSON representation

Provides several plugin types for eslint-define-config

Awesome Lists containing this project

README

        



Build Status


License: MIT


Code Style: Prettier


Donate: PayPal

# @eslint-types/\*

This repository is a monorepo that contains types for [eslint-define-config](https://github.com/eslint-types/eslint-define-config).

[All supported packages](https://npmjs.com/~eslint-types/)

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:

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

///

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