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
- Host: GitHub
- URL: https://github.com/maritzstl/eslint-plugin-maritz
- Owner: MaritzSTL
- License: mit
- Created: 2017-07-22T21:36:41.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-09-28T21:07:14.000Z (over 7 years ago)
- Last Synced: 2025-01-13T14:31:48.136Z (over 1 year ago)
- Topics: eslint, eslint-config, eslint-plugin
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
]
}
```