https://github.com/geta/eslint-config
https://github.com/geta/eslint-config
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/geta/eslint-config
- Owner: Geta
- Created: 2019-11-04T13:28:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-12T17:13:46.000Z (over 3 years ago)
- Last Synced: 2025-03-06T10:03:20.772Z (3 months ago)
- Language: JavaScript
- Size: 182 KB
- Stars: 0
- Watchers: 22
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint-config-config
Generic eslint config Geta uses in their frontend projects.
## Usage
### Install
#### NPM
```cmd
npm install eslint-config-geta
```#### Yarn
```cmd
yarn add eslint-config-geta
```### Update your .eslintrc file
1. If you don't already have one, create a .eslintrc file.
2. Add the following to the config:
```json
{
"extends": ["eslint-config-geta"]
}
```or you can omit the `eslint-config` part, and extend it like this:
```json
{
"extends": ["geta"]
}
```Note that this config does not include parsers or non-generic things, so you might
need to define a parser in your own config.