Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken markdown links #2291

Merged
merged 1 commit into from Dec 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion 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.
2 changes: 1 addition & 1 deletion docs/rule/no-bare-strings.md
Expand Up @@ -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'] }`

Expand Down
2 changes: 1 addition & 1 deletion docs/rule/no-triple-curlies.md
Expand Up @@ -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
2 changes: 1 addition & 1 deletion docs/rule/require-each-key.md
Expand Up @@ -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)
Copy link
Member Author

@bmish bmish Dec 23, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This The Immutable Pattern in Tracked Properties guide disappeared and I don't know what to replace it with currently.

2 changes: 1 addition & 1 deletion docs/rule/style-concatenation.md
Expand Up @@ -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

Expand Down