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.
- Host: GitHub
- URL: https://github.com/nathanboktae/esformatter-asi
- Owner: nathanboktae
- License: other
- Created: 2015-03-09T05:50:30.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-15T04:18:41.000Z (almost 10 years ago)
- Last Synced: 2025-05-20T03:12:15.336Z (about 1 month ago)
- Language: JavaScript
- Size: 144 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
[](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)