Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

README

        



witheslint

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!