# import-sort-style-studytube

> Studytube's import-sort style (Angular, Typescript)

Latest version **1.0.4** (published 2019-03-07) · ISC license · 0 weekly downloads

## Install

```sh
npm install import-sort-style-studytube
pnpm add import-sort-style-studytube
yarn add import-sort-style-studytube
bun add import-sort-style-studytube
```

## Health

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

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2019-03-07 |
| First published | 2018-10-31 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 4.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Yuriy Kuzin |
| Maintainers | yuriykuzin |

## Links

- npm: https://www.npmjs.com/package/import-sort-style-studytube
- npm.io page: https://npm.io/package/import-sort-style-studytube

## Recent versions

- 1.0.4 (latest) — 2019-03-07
- 1.0.3 — 2018-12-21
- 1.0.2 — 2018-11-01
- 1.0.1 — 2018-11-01
- 1.0.0 — 2018-10-31

## README

# import-sort-style-studytube
Studytube's import-sort style (Angular, Typescript)

for [import-sort](https://github.com/renke/import-sort)

```javascript
// angular imports:
import {...} "@angular/...";

// third party modules:
import { NgxPageScrollModule } from 'ngx-page-scroll';
import { TranslateModule } from '@ngx-translate/core';
import 'moment/locale/en.js';

// env, config, routes:
import { APP_TOKEN } from './config';
import { appRoutes } from './routes';
import { environment } from '@env';

// local imports:
import { AnotherComponent } from '../another/another.component';
import { SomePipe } from '@app/shared/pipes/some.pipe';
import { SomeComponent } from './components/some/some.component';
import './my-lib.js';
```

## install from npm

1. `npm i import-sort-style-studytube -D`

2. Add `.importsortrc` file to the project:

```javascript
{
  ".ts, .tsx": {
    "parser": "typescript",
    "style": "studytube"
  }
}
```

---
_Source: https://npm.io/package/import-sort-style-studytube · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
