Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ciena-blueplanet/eslint-plugin-ember-standard
https://github.com/ciena-blueplanet/eslint-plugin-ember-standard
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ciena-blueplanet/eslint-plugin-ember-standard
- Owner: ciena-blueplanet
- License: mit
- Created: 2016-12-27T15:37:36.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-04-17T19:16:44.000Z (over 1 year ago)
- Last Synced: 2024-09-22T22:48:02.993Z (3 months ago)
- Language: JavaScript
- Size: 411 KB
- Stars: 0
- Watchers: 9
- Forks: 8
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# eslint-plugin-ember-standard
ESlint rules for Ember projects.
###### Dependencies
![Node][node-img]
[![NPM][npm-img]][npm-url]###### Health
[![Travis][ci-img]][ci-url]
[![Coveralls][cov-img]][cov-url]###### Security
[![bitHound][bithound-img]][bithound-url]
## Installation
```bash
npm install --save-dev eslint-plugin-ember-standard
```## Rules
### Possible Errors
* [no-set-in-computed-property](documentation/rules/no-set-in-computed-property.md) – Prevent side effects.
* [no-settimeout](documentation/rules/no-settimeout.md) – Make run loop aware of timeouts.
* [prop-types](documentation/rules/prop-types.md) – Make sure `PropTypes` references are valid.### Best Practices
* [computed-property-readonly](documentation/rules/computed-property-readonly.md) – Enforce data down, actions up.
* [logger](documentation/rules/logger.md) – Make sure logging goes through Ember.### Stylistic Issues
* [destructure](documentation/rules/destructure.md) – Make sure Ember properties are destructured.
* [import](documentation/rules/import.md) – Make sure Ember is explicitly imported.
* [single-destructure](documentation/rules/single-destructure.md) – Make sure Ember properties are destructured in a single variable declaration.[bithound-img]: https://www.bithound.io/github/ciena-blueplanet/eslint-plugin-ember-standard/badges/score.svg "bitHound"
[bithound-url]: https://www.bithound.io/github/ciena-blueplanet/eslint-plugin-ember-standard[ci-img]: https://img.shields.io/travis/ciena-blueplanet/eslint-plugin-ember-standard.svg "Travis CI Build Status"
[ci-url]: https://travis-ci.org/ciena-blueplanet/eslint-plugin-ember-standard[cov-img]: https://img.shields.io/coveralls/ciena-blueplanet/eslint-plugin-ember-standard.svg "Coveralls Code Coverage"
[cov-url]: https://coveralls.io/github/ciena-blueplanet/eslint-plugin-ember-standard[node-img]: https://img.shields.io/badge/node-4+-green.svg "Node Version"
[npm-img]: https://img.shields.io/npm/v/eslint-plugin-ember-standard.svg "NPM Version"
[npm-url]: https://www.npmjs.com/package/eslint-plugin-ember-standard