Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trevorblades/eslint-config
☝️ A shared ESLint config
https://github.com/trevorblades/eslint-config
eslint
Last synced: about 1 month ago
JSON representation
☝️ A shared ESLint config
- Host: GitHub
- URL: https://github.com/trevorblades/eslint-config
- Owner: trevorblades
- Created: 2017-05-21T01:25:19.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2023-11-20T06:50:06.000Z (12 months ago)
- Last Synced: 2024-10-08T11:07:42.541Z (about 1 month ago)
- Topics: eslint
- Language: JavaScript
- Homepage: https://npm.im/@trevorblades/eslint-config
- Size: 631 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @trevorblades/eslint-config
[![Build Status](https://github.com/trevorblades/eslint-config/workflows/Node%20CI/badge.svg)](https://github.com/trevorblades/eslint-config/actions)
This is a shared ESLint config with a few rules that I like to use. It has no dependencies, but should be used alongside ESLint and probably some other plugins.
## Installation
```bash
yarn add -D eslint @trevorblades/eslint-config
```## Usage
Create an `.eslintrc` file that extends this config. For more configuration options, check out the [ESLint docs](https://eslint.org/docs/user-guide/configuring).
```json
{
"extends": [
"@trevorblades",
// ...your other ESLint config extensions
]
}
```## Real life examples
Here's an example config for a project that uses **React with TypeScript**. It also features Prettier code formatting and import sorting.
```bash
yarn add -D eslint @trevorblades/eslint-config eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-prettier eslint-config-prettier prettier eslint-plugin-simple-import-sort @typescript-eslint/eslint-plugin @typescript-eslint/parser typescript
``````js
// @ts-check/**
* @type {import('eslint').ESLint.ConfigData}
*/
const config = {
env: {
node: true,
browser: true,
},
extends: [
"@trevorblades",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
],
plugins: ["simple-import-sort"],
rules: {
"react/prop-types": "off",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"@typescript-eslint/consistent-type-imports": "error",
},
}
```