Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/eslint-types/define-config-plugin-types
- Owner: eslint-types
- License: mit
- Created: 2023-10-10T07:10:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-01T20:05:14.000Z (10 days ago)
- Last Synced: 2024-11-01T21:17:53.580Z (10 days ago)
- Topics: eslint, types
- Language: TypeScript
- Homepage:
- Size: 237 KB
- Stars: 33
- Watchers: 0
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# @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({
// ...
});
```