Skip to content

Commit

Permalink
Tweaks to rules index page
Browse files Browse the repository at this point in the history
  • Loading branch information
adidahiya authored Feb 26, 2019
1 parent 04742af commit 61efd92
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions rules/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,34 +6,34 @@ menu: main
order: 2
---

Lint _rules_ encode logic for syntactic & semantic checks of TypeScript source code.
Lint rules encode logic for syntactic & semantic checks of TypeScript source code.

### TypeScript-specific

_These rules find errors related to TypeScript features_:
These rules find errors related to TypeScript language features.

{% include rule_list.html ruleType="typescript" %}

### Functionality

_These rules catch common errors in JS programming or otherwise confusing constructs that are prone to producing bugs_:
These rules catch common errors in JS programming or otherwise confusing constructs that are prone to producing bugs.

{% include rule_list.html ruleType="functionality" %}

### Maintainability

_These rules make code maintenance easier_:
These rules make code maintenance easier.

{% include rule_list.html ruleType="maintainability" %}

### Style

_These rules enforce consistent style across your codebase_:
These rules enforce various stylistic conventions which do not affect code functionality.

{% include rule_list.html ruleType="style" %}

### Format
### Formatting

_These rules enforce consistent use of whitespace and punctuation_:
These rules enforce consistent code formatting, mostly dealing with whitespace and punctuation. Note that support for this category of rules is deprioritized in TSLint and we recommend using a tool like [Prettier](https://prettier.io) instead ([see this issue thread for more information](https://github.com/palantir/tslint/issues/3592)).

{% include rule_list.html ruleType="formatting" %}

0 comments on commit 61efd92

Please sign in to comment.