From 876a21778a0b67e9659694246f4b30b4317c3751 Mon Sep 17 00:00:00 2001 From: Bryan Mishkin <698306+bmish@users.noreply.github.com> Date: Thu, 23 Dec 2021 10:07:41 -0600 Subject: [PATCH] docs: fix some broken markdown links --- docs/rule/_TEMPLATE_.md | 2 +- docs/rule/no-bare-strings.md | 2 +- docs/rule/no-triple-curlies.md | 2 +- docs/rule/require-each-key.md | 2 +- docs/rule/style-concatenation.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/rule/_TEMPLATE_.md b/docs/rule/_TEMPLATE_.md index d3365a821..2e3cb5c92 100644 --- a/docs/rule/_TEMPLATE_.md +++ b/docs/rule/_TEMPLATE_.md @@ -1,3 +1,3 @@ # Template -Please see [dev/new-rule/templates/doc.md](dev/new-rule/templates/doc.md) to find the documentation template for new rules. +Please see [dev/templates/doc.md](dev/templates/doc.md) to find the documentation template for new rules. diff --git a/docs/rule/no-bare-strings.md b/docs/rule/no-bare-strings.md index b129fa0ca..87d062857 100644 --- a/docs/rule/no-bare-strings.md +++ b/docs/rule/no-bare-strings.md @@ -30,7 +30,7 @@ This rule **allows** the following: When the config value of `true` is used the following configuration is used: -* `allowlist` - refer to the `DEFAULT_CONFIG.allowlist` property in the [rule](../lib/rules/no-bare-strings.js) +* `allowlist` - refer to the `DEFAULT_CONFIG.allowlist` property in the [rule](../../lib/rules/no-bare-strings.js) * `globalAttributes` - `title`, `aria-label`, `aria-placeholder`, `aria-roledescription`, `aria-valuetext` * `elementAttributes` - `{ img: ['alt'], input: ['placeholder'] }` diff --git a/docs/rule/no-triple-curlies.md b/docs/rule/no-triple-curlies.md index 859f16740..d36a1dc44 100644 --- a/docs/rule/no-triple-curlies.md +++ b/docs/rule/no-triple-curlies.md @@ -20,4 +20,4 @@ This rule **allows** the following: ## References -* See the [documentation](https://www.emberjs.com/api/ember/release/functions/@ember%2Ftemplate/htmlSafe) for Ember's `htmlSafe` function +* See the [documentation](https://api.emberjs.com/ember/release/functions/@ember%2Ftemplate/htmlSafe) for Ember's `htmlSafe` function diff --git a/docs/rule/require-each-key.md b/docs/rule/require-each-key.md index acec79408..d25939341 100644 --- a/docs/rule/require-each-key.md +++ b/docs/rule/require-each-key.md @@ -79,4 +79,4 @@ This rule **allows** the following: ## References * [Specifying Keys](https://api.emberjs.com/ember/release/classes/Ember.Templates.helpers/methods/each#specifying-keys) -* [The Immutable Pattern in Tracked Properties](https://glimmerjs.com/guides/tracked-properties) +* [The Immutable Pattern in Tracked Properties](https://glimmerjs.com/guides/tracked-properties) (TODO: fix this link) diff --git a/docs/rule/style-concatenation.md b/docs/rule/style-concatenation.md index 542247765..abd153c0f 100644 --- a/docs/rule/style-concatenation.md +++ b/docs/rule/style-concatenation.md @@ -48,7 +48,7 @@ This rule **allows** the following: ## References * See the [Binding Style Attributes](https://emberjs.com/deprecations/v1.x/#toc_binding-style-attributes) Ember deprecation documentation -* See the [documentation](https://www.emberjs.com/api/ember/release/functions/@ember%2Ftemplate/htmlSafe) for Ember's `htmlSafe` function +* See the [documentation](https://api.emberjs.com/ember/release/functions/@ember%2Ftemplate/htmlSafe) for Ember's `htmlSafe` function * See the [documentation](https://www.emberjs.com/api/ember/release/classes/Ember.Templates.helpers/methods/concat?anchor=concat) for Ember's `concat` handlebars template helper * See the [documentation](https://github.com/romulomachado/ember-cli-string-helpers#html-safe) for the `html-safe` handlebars template helper from the `ember-cli-string-helpers` addon