Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tyom/eslint-config

My ESLint base config
https://github.com/tyom/eslint-config

eslint eslint-config eslint-plugin-vue

Last synced: 2 days ago
JSON representation

My ESLint base config

Awesome Lists containing this project

README

        

# Tyom's ESLint config

Base for JS projects.

## Configs

- **base**
Base ES 2018 config for use with node and on the client.

- **prettier**
Includes _base_ and Prettier plugin recommendations. Additional preferences.

- **jest**
Includes _base_ and Jest plugin recommendations. Additional preferences.

- **Vue**
Includes _base_ and Vue plugin strong recommendations. Additional preferences.

## Install

```
npm i eslint-config-tyom
```

```
yarn add eslint-config-tyom
```

Then to import everything in `eslintrc`:

```json
{ "extends": ["tyom"] }
```

individual configs:

```json
{ "extends": ["tyom/prettier", "tyom/vue"] }
```