@ionic/v4-migration-tslint

TSLint rules for Ionic Angular v4 Migration

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@ionic/v4-migration-tslint
102161.7.15 years ago6 years agoMinified + gzip package size for @ionic/v4-migration-tslint in KB

Readme

@ionic/v4-migration-tslint
!Build Statuscircle-badgecircle-badge-url Code Style: Prettier semantic-release Coverage Status Commitizen friendly
An effort to warn about and automatically fix syntax changes listed in BREAKING.md using tslint, codelyzer, and the Angular compiler.
We are looking for contributors to help build these rules out! See CONTRIBUTING.md to help out. :sparklingheart:

How to Use

  1. Install the lint rules:
```
npm i -D @ionic/v4-migration-tslint
```
  1. Add a file called ionic-migration.json at the root of your project and paste in the following JSON.
```json
{
  "rulesDirectory": ["@ionic/v4-migration-tslint/rules"],
  "rules": {
    "ion-action-sheet-method-create-parameters-renamed": true,
    "ion-alert-method-create-parameters-renamed": true,
    "ion-back-button-not-added-by-default": { "options": [true], "severity": "warning" },
    "ion-button-attributes-renamed": true,
    "ion-button-is-now-an-element": true,
    "ion-buttons-attributes-renamed": true,
    "ion-col-attributes-renamed": true,
    "ion-datetime-capitalization-changed": true,
    "ion-fab-attributes-renamed": true,
    "ion-fab-button-is-now-an-element": true,
    "ion-fab-fixed-content": true,
    "ion-icon-attribute-is-active-removed": true,
    "ion-item-attributes-renamed": true,
    "ion-item-divider-ion-label-required": true,
    "ion-item-ion-label-required": true,
    "ion-item-is-now-an-element": true,
    "ion-item-option-is-now-an-element": true,
    "ion-item-option-method-get-sliding-percent-renamed": true,
    "ion-item-options-attribute-values-renamed": true,
    "ion-label-attributes-renamed": true,
    "ion-list-header-ion-label-required": true,
    "ion-loading-method-create-parameters-renamed": true,
    "ion-menu-events-renamed": true,
    "ion-menu-toggle-is-now-an-element": true,
    "ion-navbar-is-now-ion-toolbar": true,
    "ion-option-is-now-ion-select-option": true,
    "ion-overlay-method-create-should-use-await": true,
    "ion-overlay-method-present-should-use-await": true,
    "ion-radio-attributes-renamed": true,
    "ion-radio-group-is-now-an-element": true,
    "ion-radio-slot-required": true,
    "ion-range-attributes-renamed": true,
    "ion-segment-button-ion-label-required": true,
    "ion-spinner-attribute-values-renamed": true,
    "ion-tabs-refactored": { "options": [true], "severity": "warning" },
    "ion-text-is-now-an-element": true
  }
}
```
  1. Lint your project:
```bash
npx tslint -c ionic-migration.json -p tsconfig.json
```

:memo: **Hints**:

- Run tslint with `-t verbose` to output the rule names of lint errors which correspond to the [table of rules](#rules) below.
- Run tslint with `--fix` to attempt automatic fixes (_note_: not all rules have fixes, and be sure to save a backup in version control before running with `--fix`)

Rules

:white
largesquare: – These rules need to be completed! See CONTRIBUTING.md to get started.
:wrench: – These rules can be automatically fixed with --fix.
<th>category</th>
<th colspan="3">rule</th>
<th>contributors</th>
<th colspan="5">Code Changes</th>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#action-sheet">Action Sheet</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-action-sheet-method-create-parameters-renamed</code></td>
<td>
  <a href="https://github.com/cwoolum">@cwoolum</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#alert">Alert</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-alert-method-create-parameters-renamed</code></td>
<td>
  <a href="https://github.com/cwoolum">@cwoolum</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#datetime">Datetime</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-datetime-capitalization-changed</code>
</td>
<td>
  <a href="https://github.com/mhartington">@mhartington</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#item-sliding">Item Sliding</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-item-option-method-get-sliding-percent-renamed</code>
</td>
<td>
   <a href="https://github.com/mhartington">@mhartington</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#loading">Loading</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-loading-method-create-parameters-renamed</code>
</td>
<td>
   <a href="https://github.com/areo">@areo</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#nav">Nav</a>
</th>
<td></td>
<td>:white_large_square:</td>
<td>
  <code>ion-nav-controller-method-remove-renamed</code>
</td>
<td></td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#option">Option</a>
</th>
<td></td>
<td>:white_large_square:</td>
<td>
  <code>ion-option-class-renamed</code>
</td>
<td></td>
<th rowspan="2">
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#overlays">Overlays</a>
</th>
<td></td>
<td>:white_check_mark:</td>
<td>
  <code>ion-overlay-method-create-should-use-await</code>
</td>
<td><a href="https://github.com/cwoolum">@cwoolum</a></td>
<td></td>
<td>:white_check_mark:</td>
<td>
  <code>ion-overlay-method-present-should-use-await</code>
</td>
 <td><a href="https://github.com/cwoolum">@cwoolum</a></td>
<th colspan="5">Markup Changes</th>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#back-button">Back Button</a>
</th>
<td></td>
<td>:white_check_mark:</td>
<td>
  <code>ion-back-button-not-added-by-default</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th rowspan="2">
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#button">Button</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-button-attributes-renamed</code>
</td>
<td>
  <a href="https://github.com/cwoolum">@cwoolum</a>
</td>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-button-is-now-an-element</code>
</td>
<td>
  <a href="https://github.com/cwoolum">@cwoolum</a>,
  <a href="https://github.com/j3gb3rt">@j3gb3rt</a>
</td>
<th rowspan="3">
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#fab">FAB</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-fab-button-is-now-an-element</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>,
  <a href="https://github.com/j3gb3rt">@j3gb3rt</a>
</td>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-fab-attributes-renamed</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-fab-fixed-content</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#grid">Grid</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-col-attributes-renamed</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#icon">Icon</a>
</th>
<td></td>
<td>:white_check_mark:</td>
<td>
  <code>ion-icon-attribute-is-active-removed</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th rowspan="3">
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#item">Item</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-item-is-now-an-element</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>,
  <a href="https://github.com/j3gb3rt">@j3gb3rt</a>
</td>
<td></td>
<td>:white_check_mark:</td>
<td>
  <code>ion-item-ion-label-required</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-item-attributes-renamed</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#item-divider">Item Divider</a>
</th>
<td></td>
<td>:white_check_mark:</td>
<td>
  <code>ion-item-divider-ion-label-required</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#item-options">Item Options</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-item-options-attribute-values-renamed</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#item-sliding">Item Sliding</a>
</th>
<td></td>
<td>:white_check_mark:</td>
<td>
  <code>ion-item-option-is-now-an-element</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#label">Label</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-label-attributes-renamed</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#list-header">List Header</a>
</th>
<td></td>
<td>:white_check_mark:</td>
<td>
  <code>ion-list-header-ion-label-required</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>

<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#menu">Menu</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-menu-events-renamed</code>
</td>
<td>
  <a href="https://github.com/mhartington">@mhartington</a>
</td>

<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#menu-toggle">Menu Toggle</a>
</th>
<td></td>
<td>:white_check_mark:</td>
<td>
  <code>ion-menu-toggle-is-now-an-element</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#navbar">Navbar</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-navbar-is-now-ion-toolbar</code></td>
<td>
  <a href="https://github.com/cwoolum">@cwoolum</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#option">Option</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-option-is-now-ion-select-option</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th rowspan="3">
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#radio">Radio</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-radio-attributes-renamed</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-radio-slot-required</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-radio-group-is-now-an-element</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>,
  <a href="https://github.com/j3gb3rt">@j3gb3rt</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#range">Range</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-range-attributes-renamed</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#segment-button">Segment Button</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-segment-button-ion-label-required</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#select">Select</a>
</th>
<td></td>
<td>:white_large_square:</td>
<td>
  <code>ion-select-attributes-renamed</code>
</td>
<td></td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#spinner">Spinner</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-spinner-attribute-values-renamed</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>

<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#tabs">Tabs</a>
</th>
<td></td>
<td>:white_check_mark:</td>
<td>
  <code>ion-tabs-refactored</code>
</td>
<td>
  <a href="https://github.com/mhartington">@mhartington</a>,
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#text--typography">Text / Typography</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-text-is-now-an-element</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>,
  <a href="https://github.com/j3gb3rt">@j3gb3rt</a>
</td>
<th>
  <a href="https://github.com/ionic-team/ionic/blob/master/angular/BREAKING.md#toolbar">Toolbar</a>
</th>
<td>:wrench:</td>
<td>:white_check_mark:</td>
<td>
  <code>ion-buttons-attributes-renamed</code>
</td>
<td>
  <a href="https://github.com/dwieeb">@dwieeb</a>
</td>

Not Covered

Some changes are not covered by this fixer due to their complexity or because it would make no sense to do in automated fashion. They are: