Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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


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

Last synced: 21 days ago
JSON representation

Awesome Lists containing this project

README

        

# eslint-config-untile

Untile-flavored ESLint config.

## Installation

```sh
$ npm install eslint @untile/eslint-config-untile --save-dev
```

## Usage

Create an `.eslintrc.yml` file with the following:

```yaml
extends: untile
```

Add the following `script` to your `package.json`:

```json
{
"scripts": {
"lint": "eslint ."
}
}
```

and run the linter with:

```sh
$ npm run lint
```

## Releases

Be sure to have configured `NPM_TOKEN` in your globals.

```bash
npm version [ | major | minor | patch] -m "Release %s"
git push origin master && git push --tags
```