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

https://github.com/maritzstl/eslint-plugin-maritz


https://github.com/maritzstl/eslint-plugin-maritz

eslint eslint-config eslint-plugin

Last synced: 28 days ago
JSON representation

Awesome Lists containing this project

README

          

# eslint-plugin-maritz

Applies Maritz specific rules and plugins

## Installation

You'll first need to install [ESLint](http://eslint.org):

```
$ npm i eslint --save-dev
```

Next, install `eslint-plugin-maritz`:

```
$ npm install eslint-plugin-maritz --save-dev
```

**Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `eslint-plugin-maritz` globally.

## Usage

Add `maritz` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:

```json
{
"extends": ["plugin:maritz/polymer"],
"plugins": [
"maritz"
]
}
```