Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

An eslint configuration fro javasccript, typescript and vuejs inspired by estlint-config-airbnb and @antfu/eslint-config
https://github.com/marekvospel/eslint-config

eslint eslint-config javascript typescript vuejs

Last synced: about 2 months ago
JSON representation

An eslint configuration fro javasccript, typescript and vuejs inspired by estlint-config-airbnb and @antfu/eslint-config

Awesome Lists containing this project

README

        

# Marek Vospěl's eslint configs

[![GitHub version](https://img.shields.io/github/package-json/v/marekvospel/eslint-config)](https://github.com/marekvospel/eslint-config)
[![npm](https://img.shields.io/npm/v/@vospel/eslint-config)](https://npmjs.com/package/@vospel/eslint-config)
[![Github license](https://img.shields.io/github/license/marekvospel/eslint-config)](https://github.com/marekvospel/eslint-config)

These are settings for Eslint I use in my projects.

## Installing
Install `eslint` and `@vospel/eslint-config`
```shell
npm i -D eslint @vospel/eslint-config
# or
pnpm i -D eslint @vospel/eslint-config
# or
yarn add -D eslint @vospel/eslint-config
```

Add extends to your `.eslintrc`
```js
module.exports = {
extends: [
'@vospel',
],
}
```