Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/eta-dev/eslint-plugin-eta

An ESLint plugin so you can lint Eta template files
https://github.com/eta-dev/eslint-plugin-eta

eslint eslint-plugin eslintplugin

Last synced: 12 days ago
JSON representation

An ESLint plugin so you can lint Eta template files

Awesome Lists containing this project

README

        

# eslint-plugin-eta

[![Travis](https://img.shields.io/travis/com/eta-dev/eslint-plugin-eta/master.svg)](https://travis-ci.com/eta-dev/eslint-plugin-eta)
[![Coveralls](https://img.shields.io/coveralls/eta-dev/eslint-plugin-eta.svg)](https://coveralls.io/github/eta-dev/eslint-plugin-eta)

> Lint your embeddable Eta templates with ease

### Installation
Run `npm install --save-dev eslint-plugin-eta` to install this ESLint plugin.

### Usage
Add this to your ESLint config:
```javascript
module.exports = {
...
plugins: [
"eta"
],
overrides: [
{
files: ["*.eta"],
processor: "eta/eta"
}
],
...
}
```