https://github.com/uvarovag/eslint-config-feature-sliced-flat
https://github.com/uvarovag/eslint-config-feature-sliced-flat
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/uvarovag/eslint-config-feature-sliced-flat
- Owner: uvarovag
- Created: 2024-12-10T14:26:07.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2025-01-23T14:51:55.000Z (4 months ago)
- Last Synced: 2025-02-03T09:48:39.129Z (4 months ago)
- Language: JavaScript
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @feature-sliced/eslint-config adapter for ESLint 9 Flat Config
## Installation
To use this configuration in your project, install the required dependencies:
```bash
npm install --save-dev @uvarovag/eslint-config-feature-sliced-flat eslint@^9.16.0
```## Usage
### Create a `eslint.config.mjs` file
```js
import featureSlicedConfig from '@uvarovag/eslint-config-feature-sliced-flat'
// Import your custom project-specific ESLint 9 flat configuration
import projectSpecificConfig from 'project-config'export default [...featureSlicedConfig, ...projectSpecificConfig]
```