Skip to content

Commit fb51f84

Browse files
author
Mendes Hugo
committed
fix(docs): run lint after documentation generation
1 parent 25a780e commit fb51f84

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
- name: Install packages
2727
run: npm ci
2828

29+
# No need to have the generated content up-to-date, but its content must be complete
30+
- name: Verify documentation content
31+
run: npm run docs:update
32+
2933
- name: Lint
3034
run: npm run lint
3135

@@ -34,7 +38,3 @@ jobs:
3438

3539
- name: Tests
3640
run: npm run test:coverage -- --ci
37-
38-
# No need to have the generated content up-to-date, but its content must be complete
39-
- name: Verify documentation content
40-
run: npm run docs:update

docs/rules/sort-on-accessors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Sort decorators on accessors.
1212

1313
| Name | Description | value |
1414
|:----------------|:-------------------------------------------------------------------------|:----------------|
15-
| `autoFix` | Automatically fix the order.<br/>Decorators order can matter at runtime. | *boolean* |
16-
| `caseSensitive` | If true, enforce properties to be in case-sensitive order. | *boolean* |
15+
| `autoFix` | Automatically fix the order.<br/>Decorators order can matter at runtime. | _boolean_ |
16+
| `caseSensitive` | If true, enforce properties to be in case-sensitive order. | _boolean_ |
1717
| `direction` | Specify the direction of the ordering. | `asc` \| `desc` |
1818

1919
> Definitive information in the [JSON schema](../../src/lib/sort-rule/sort-rule.options.schema.json).

docs/rules/sort-on-classes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Sort decorators on classes.
1212

1313
| Name | Description | value |
1414
|:----------------|:-------------------------------------------------------------------------|:----------------|
15-
| `autoFix` | Automatically fix the order.<br/>Decorators order can matter at runtime. | *boolean* |
16-
| `caseSensitive` | If true, enforce properties to be in case-sensitive order. | *boolean* |
15+
| `autoFix` | Automatically fix the order.<br/>Decorators order can matter at runtime. | _boolean_ |
16+
| `caseSensitive` | If true, enforce properties to be in case-sensitive order. | _boolean_ |
1717
| `direction` | Specify the direction of the ordering. | `asc` \| `desc` |
1818

1919
> Definitive information in the [JSON schema](../../src/lib/sort-rule/sort-rule.options.schema.json).

docs/rules/sort-on-methods.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Sort decorators on methods.
1212

1313
| Name | Description | value |
1414
|:----------------|:-------------------------------------------------------------------------|:----------------|
15-
| `autoFix` | Automatically fix the order.<br/>Decorators order can matter at runtime. | *boolean* |
16-
| `caseSensitive` | If true, enforce properties to be in case-sensitive order. | *boolean* |
15+
| `autoFix` | Automatically fix the order.<br/>Decorators order can matter at runtime. | _boolean_ |
16+
| `caseSensitive` | If true, enforce properties to be in case-sensitive order. | _boolean_ |
1717
| `direction` | Specify the direction of the ordering. | `asc` \| `desc` |
1818

1919
> Definitive information in the [JSON schema](../../src/lib/sort-rule/sort-rule.options.schema.json).

docs/rules/sort-on-parameters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Sort decorators on parameters.
1212

1313
| Name | Description | value |
1414
|:----------------|:-------------------------------------------------------------------------|:----------------|
15-
| `autoFix` | Automatically fix the order.<br/>Decorators order can matter at runtime. | *boolean* |
16-
| `caseSensitive` | If true, enforce properties to be in case-sensitive order. | *boolean* |
15+
| `autoFix` | Automatically fix the order.<br/>Decorators order can matter at runtime. | _boolean_ |
16+
| `caseSensitive` | If true, enforce properties to be in case-sensitive order. | _boolean_ |
1717
| `direction` | Specify the direction of the ordering. | `asc` \| `desc` |
1818

1919
> Definitive information in the [JSON schema](../../src/lib/sort-rule/sort-rule.options.schema.json).

docs/rules/sort-on-properties.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Sort decorators on properties.
1212

1313
| Name | Description | value |
1414
|:----------------|:-------------------------------------------------------------------------|:----------------|
15-
| `autoFix` | Automatically fix the order.<br/>Decorators order can matter at runtime. | *boolean* |
16-
| `caseSensitive` | If true, enforce properties to be in case-sensitive order. | *boolean* |
15+
| `autoFix` | Automatically fix the order.<br/>Decorators order can matter at runtime. | _boolean_ |
16+
| `caseSensitive` | If true, enforce properties to be in case-sensitive order. | _boolean_ |
1717
| `direction` | Specify the direction of the ordering. | `asc` \| `desc` |
1818

1919
> Definitive information in the [JSON schema](../../src/lib/sort-rule/sort-rule.options.schema.json).

0 commit comments

Comments
 (0)