Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/witheslint/witheslint
Implementing a standardized ESLint configuration across all your projects.
https://github.com/witheslint/witheslint
eslint eslint-config eslint-flat-config
Last synced: 16 days ago
JSON representation
Implementing a standardized ESLint configuration across all your projects.
- Host: GitHub
- URL: https://github.com/witheslint/witheslint
- Owner: witheslint
- License: mit
- Created: 2023-12-24T03:11:00.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-10-03T13:37:45.000Z (about 1 month ago)
- Last Synced: 2024-10-12T03:02:04.527Z (27 days ago)
- Topics: eslint, eslint-config, eslint-flat-config
- Language: TypeScript
- Homepage: https://witheslint.github.io
- Size: 807 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Implementing a standardized ESLint configuration across all your projects.
## Features
- Auto fix for formatting
- Single quotes, no semicolons
- Sorted imports, dangling commas for cleaner commit diff
- Designed to work with `JSX`, `TypeScript` out-of-box
- Support also for `Astro`, `React`, `Svelte`, `Solid`, `Vue`
- [ESLint Flat config](https://eslint.org/docs/latest/use/configure/configuration-files-new), compose easily!
- Reasonable defaults, best practices, only one-line of config## Usage
#### install deps
```zsh
pnpm i -D eslint witheslint
```#### create `eslint.config.mjs` in your project root
```js
import { defineConfig } from 'witheslint'export default defineConfig()
```> Please refer to the [documentation](https://witheslint.github.io) for more details.
## Contribution
Any contribution to the project is welome.
Run into a problem? Open an [issue](https://github.com/witheslint/witheslint/issues/new/choose).
Want to add some feature? PRs are welcome!>
> Local development
>
> - Clone this repository
> - Install the latest LTS version of [Node.js](https://nodejs.org/en/)
> - Enable [Corepack](https://github.com/nodejs/corepack) using `corepack enable`
> - Install dependencies using `pnpm install`
>
>
Enjoy!