https://github.com/subvisual/eslint-config-finiam
https://github.com/subvisual/eslint-config-finiam
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/subvisual/eslint-config-finiam
- Owner: subvisual
- License: mit
- Created: 2020-09-24T16:04:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-14T10:57:15.000Z (about 5 years ago)
- Last Synced: 2025-02-14T21:49:02.651Z (over 1 year ago)
- Language: JavaScript
- Size: 120 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# eslint-config-finiam
Our own linters base on our Javascript linters. An extension upon the `airbnb` config to re-use across our projects.
## Usage
Just install them with either `npm` or `yarn`.
If only using the base config do:
```
yarn add --dev eslint-config-finiam eslint-config-airbnb-base eslint-config-prettier eslint-plugin-prettier eslint-config-import eslint-plugin-import
```
If you are using the React config do:
```bash
yarn add --dev eslint-config-finiam eslint-config-airbnb eslint-config-prettier eslint-plugin-prettier eslint-config-import eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react eslint-plugin-react-hooks
```
To use them simply extend their configs on your `ESLint` config.
To use with regular Javascript:
```json
{
"extends": "finiam"
}
```
To use with React:
```json
{
"extends": "finiam/react"
}
```