Skip to content

Commit 61f599e

Browse files
authored
Update rule documents (#367)
The link to the test file was broken
1 parent 2a92d2b commit 61f599e

15 files changed

+15
-15
lines changed

Diff for: docs/rules/enforce-style-type.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ Only allow plain styles; no `scoped` or `module` attributes.
108108
## Implementation
109109

110110
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/enforce-style-type.ts)
111-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/enforce-style-type.js)
111+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/enforce-style-type.ts)

Diff for: docs/rules/no-deprecated-deep-combinator.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ Nothing.
3838
## Implementation
3939

4040
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/no-deprecated-deep-combinator.ts)
41-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-deprecated-deep-combinator.js)
41+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-deprecated-deep-combinator.ts)

Diff for: docs/rules/no-deprecated-v-enter-v-leave-class.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ Nothing.
108108
## Implementation
109109

110110
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/no-deprecated-v-enter-v-leave-class.ts)
111-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-deprecated-v-enter-v-leave-class.js)
111+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-deprecated-v-enter-v-leave-class.ts)

Diff for: docs/rules/no-parent-of-v-global.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ Nothing.
3535
## Implementation
3636

3737
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/no-parent-of-v-global.ts)
38-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-parent-of-v-global.js)
38+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-parent-of-v-global.ts)

Diff for: docs/rules/no-parsing-error.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ Nothing.
3232
## Implementation
3333

3434
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/no-parsing-error.ts)
35-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-parsing-error.js)
35+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-parsing-error.ts)

Diff for: docs/rules/no-unused-keyframes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ This rule reports `@keyframes` is not used in Scoped CSS.
4949
## Implementation
5050

5151
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/no-unused-keyframes.ts)
52-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-unused-keyframes.js)
52+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-unused-keyframes.ts)

Diff for: docs/rules/no-unused-selector.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,4 @@ a.button.star {
162162
## Implementation
163163

164164
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/no-unused-selector.ts)
165-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-unused-selector.js)
165+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/no-unused-selector.ts)

Diff for: docs/rules/require-scoped.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ Default is set to `always`.
7272
## Implementation
7373

7474
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/require-scoped.ts)
75-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/require-scoped.js)
75+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/require-scoped.ts)

Diff for: docs/rules/require-selector-used-inside.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,4 @@ a.button.star {
127127
## Implementation
128128

129129
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/require-selector-used-inside.ts)
130-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/require-selector-used-inside.js)
130+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/require-selector-used-inside.ts)

Diff for: docs/rules/require-v-deep-argument.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ Nothing.
3737
## Implementation
3838

3939
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/require-v-deep-argument.ts)
40-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/require-v-deep-argument.js)
40+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/require-v-deep-argument.ts)

Diff for: docs/rules/require-v-global-argument.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ Nothing.
3636
## Implementation
3737

3838
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/require-v-global-argument.ts)
39-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/require-v-global-argument.js)
39+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/require-v-global-argument.ts)

Diff for: docs/rules/require-v-slotted-argument.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ Nothing.
3636
## Implementation
3737

3838
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/require-v-slotted-argument.ts)
39-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/require-v-slotted-argument.js)
39+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/require-v-slotted-argument.ts)

Diff for: docs/rules/v-deep-pseudo-style.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ This rule enforces deep pseudo style which you should use `:deep()` or `::v-deep
5050
## Implementation
5151

5252
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/v-deep-pseudo-style.ts)
53-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/v-deep-pseudo-style.js)
53+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/v-deep-pseudo-style.ts)

Diff for: docs/rules/v-global-pseudo-style.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ This rule enforces global pseudo style which you should use `:global()` or `::v-
5050
## Implementation
5151

5252
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/v-global-pseudo-style.ts)
53-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/v-global-pseudo-style.js)
53+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/v-global-pseudo-style.ts)

Diff for: docs/rules/v-slotted-pseudo-style.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ This rule enforces slotted pseudo style which you should use `:slotted()` or `::
5050
## Implementation
5151

5252
- [Rule source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/lib/rules/v-slotted-pseudo-style.ts)
53-
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/v-slotted-pseudo-style.js)
53+
- [Test source](https://github.com/future-architect/eslint-plugin-vue-scoped-css/blob/master/tests/lib/rules/v-slotted-pseudo-style.ts)

0 commit comments

Comments
 (0)