# eslint-plugin-import-order-emotion

> Eslint plugin to ensure emotion is imported at the end of absolute imports

Latest version **1.0.2** (published 2018-08-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install eslint-plugin-import-order-emotion
pnpm add eslint-plugin-import-order-emotion
yarn add eslint-plugin-import-order-emotion
bun add eslint-plugin-import-order-emotion
```

## 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.0.2 |
| Published | 2018-08-09 |
| First published | 2018-08-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 2 |
| Unpacked size | 9.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Jakub Frej |
| Maintainers | jfrej |
| Keywords | eslint, eslintplugin, eslint-plugin |

## Links

- npm: https://www.npmjs.com/package/eslint-plugin-import-order-emotion
- Repository: https://github.com/jfrej/eslint-plugin-import-order-emotion
- Homepage: https://github.com/jfrej/eslint-plugin-import-order-emotion#readme
- Issues: https://github.com/jfrej/eslint-plugin-import-order-emotion/issues
- npm.io page: https://npm.io/package/eslint-plugin-import-order-emotion

## Dependencies (2)

- [requireindex](https://npm.io/package/requireindex.md) ~1.1.0
- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.13.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.0.2 (latest) — 2018-08-09
- 1.0.1 — 2018-08-09
- 1.0.0 — 2018-08-09

## README

# eslint-plugin-import-emotion

Ensure emotion is imported at the end of absolute imports\
See [`import-order-emotion`](./docs/rules/import-order-emotion.md) documentation for details

## Installation

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

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

Next, install `eslint-plugin-import-emotion`:

```
$ npm install eslint-plugin-import-emotion --save-dev
```

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

## Usage

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

```json
{
    "plugins": [
        "import-order-emotion"
    ]
}
```


Then configure the rules you want to use under the rules section.

```json
{
    "rules": {
        "import-order-emotion/import-order-emotion": "error"
    }
}
```

## Supported Rules

* [`import-order-emotion`](./docs/rules/import-order-emotion.md)

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