# eslint-plugin-alloy

> Alloy specific rules for ESLint

Latest version **1.2.1** (published 2022-07-27) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install eslint-plugin-alloy
pnpm add eslint-plugin-alloy
yarn add eslint-plugin-alloy
bun add eslint-plugin-alloy
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.1 |
| Published | 2022-07-27 |
| First published | 2018-04-16 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4 |
| Dependencies | 3 |
| Unpacked size | 6.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 6 |
| Maintainers | cb1kenobi, awam, tisdk |
| Keywords | eslint, eslint-plugin, eslintplugin, alloy, titanium, appcelerator |

## Links

- npm: https://www.npmjs.com/package/eslint-plugin-alloy
- Repository: https://github.com/appcelerator/eslint-plugin-alloy
- Homepage: https://github.com/appcelerator/eslint-plugin-alloy#readme
- Issues: https://github.com/appcelerator/eslint-plugin-alloy/issues
- npm.io page: https://npm.io/package/eslint-plugin-alloy

## Dependencies (3)

- [xmldoc](https://npm.io/package/xmldoc.md) ^1.1.0
- [find-up](https://npm.io/package/find-up.md) ^5.0.0
- [eslint-rule-composer](https://npm.io/package/eslint-rule-composer.md) ^0.3.0

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 1.2.1 (latest) — 2022-07-27
- 1.2.0 — 2021-11-18
- 1.1.1 — 2018-06-19
- 1.1.0 — 2018-06-19
- 1.0.0 — 2018-04-16

## README

# ESLint-plugin-Alloy

Alloy specific linting rules for ESLint.

# Installation

Install [ESLint](https://www.github.com/eslint/eslint) either locally or globally.

```sh
$ npm install eslint --save-dev
```

If you installed `ESLint` globally, you have to install Alloy plugin globally too. Otherwise, install it locally.

```sh
$ npm install eslint-plugin-alloy --save-dev
```


Add "alloy" to the plugins section.

```json
{
  "plugins": [
    "alloy"
  ]
}
```

Enable the rules that you would like to use.

```json
  "rules": {
    "alloy/no-unused-vars": "error",
  }
```

# List of supported rules

* [alloy/no-unused-vars](docs/rules/no-unused-vars.md): Extension of the built in [no-unused-vars](https://github.com/eslint/eslint/blob/master/docs/rules/no-unused-vars.md) that also looks up functions used in view files.

## License

This project is open source and provided under the Apache Public License (version 2). Please make
sure you see the LICENSE file included in this distribution for more details on the license. Also,
please take notice of the privacy notice at the end of the file.

(C) Copyright 2017-2018, [Axway, Inc](http://www.axway.com) All Rights Reserved.

---
_Source: https://npm.io/package/eslint-plugin-alloy · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
