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

https://github.com/nathanboktae/esformatter-asi

Esformatter plugin to automatically remove semicolons that would be inserted by ASI rules.
https://github.com/nathanboktae/esformatter-asi

Last synced: 18 days ago
JSON representation

Esformatter plugin to automatically remove semicolons that would be inserted by ASI rules.

Awesome Lists containing this project

README

        

# esformatter-asi

An [esformatter](https://github.com/millermedeiros/esformatter) plugin for removing unnecessary semicolons that will be inserted by JavaScript's automatic semicolon insertion.

[![Build Status](https://travis-ci.org/nathanboktae/esformatter-asi.svg?branch=master)](https://travis-ci.org/nathanboktae/esformatter-asi)

## Installation

```
npm install esformatter-asi
```

## Usage

Add to your esformatter config file:

```json
{
"plugins": [
"esformatter-asi"
]
}
```

Forked from its antithesis, [esformatter-semicolons](https://github.com/bulyshko/esformatter-semicolons)