Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brinobruno/eslint-config-brinobruno
ESLint configuration used by Bruno Corrêa
https://github.com/brinobruno/eslint-config-brinobruno
eslint eslint-config
Last synced: 9 days ago
JSON representation
ESLint configuration used by Bruno Corrêa
- Host: GitHub
- URL: https://github.com/brinobruno/eslint-config-brinobruno
- Owner: brinobruno
- Created: 2023-01-18T20:23:43.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-06T21:54:38.000Z (almost 2 years ago)
- Last Synced: 2024-08-09T16:54:17.058Z (5 months ago)
- Topics: eslint, eslint-config
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@brinobruno/eslint-config
- Size: 120 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bruno Corrêa ESLint config
## What's included?
- Standard config base;
- React plugin;
- React Hooks plugin;
- JSX a11y plugin;
- Node support
- Prettier;## Setup
1. Install the dependencies
```
npm i -D eslint @brinobruno/eslint-config
```2. For a React application, create a `.eslintrc.json` file extending the config:
```
{
"extends": "@brinobruno/eslint-config/react"
}
```Or, for a Node application, create the same file with:
```
{
"extends": "@brinobruno/eslint-config/node"
}
```> You can also use a `.eslintrc.js` instead of JSON if you prefer.
## Recommended
- Prefer using on Visual Studio Code with ESLint extension
- Create a script for linting
- Enable lint on-save## In consideration/Upcoming
- Node-focused support
- Default eslintrc export