Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

My own Eslint config
https://github.com/suressk/eslint-config-suressk

eslint eslintconfig

Last synced: 12 days ago
JSON representation

My own Eslint config

Awesome Lists containing this project

README

        

# eslint-config-suressk

Custom Eslint config (`suressk`)

# Usage

- Install

```bash
npm i eslint-config-suressk -D
```

- Config in `.eslintrc`

```json
{
"extends": "suressk"
}
```

- In VSCode, install `Eslint` plugin
- use Eslint to format code when file on save
- and add `.vscode/settings.json` file

```json
{
"eslint.validate": [
"javascript",
"javascriptreact",
"markdown",
"typescript",
"yaml"
],
"prettier.enable": false
}
```