Skip to content

Commit 0e66cb8

Browse files
authored
Fix broken URLs in documentation (#1410)
1 parent 917288a commit 0e66cb8

17 files changed

+20
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ If you have any suggestions, ideas, or problems, feel free to [create an issue](
227227
- `docs/rules/new-rule.md` (documentation, start from the template -- [raw](https://raw.githubusercontent.com/ember-cli/eslint-plugin-ember/master/docs/rules/_TEMPLATE_.md), [rendered](docs/rules/_TEMPLATE_.md))
228228
- `tests/lib/rules/new-rule.js` (tests, see [no-proxies](tests/lib/rules/no-proxies.js) for an example)
229229
- Run `yarn update` to automatically update the README and other files (and re-run this if you change the rule name or description)
230-
- Make sure your changes will pass [CI](.travis.yml) by running:
230+
- Make sure your changes will pass [CI](./.github/workflows/ci.yml) by running:
231231
- `yarn test`
232232
- `yarn lint` (`yarn lint:js --fix` can fix many errors)
233233
- Create a PR and link the created issue in the description

docs/rules/no-empty-attrs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default Model.extend({
3232
});
3333
```
3434

35-
In case you need a custom behavior, it's good to write your own [transform](http://emberjs.com/api/data/classes/DS.Transform.html).
35+
In case you need a custom behavior, it's good to write your own [transform](https://api.emberjs.com/ember-data/release/classes/Transform).
3636

3737
## Help Wanted
3838

docs/rules/no-get-with-default.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This rule takes an optional object containing:
5050
## References
5151

5252
- [RFC](https://github.com/emberjs/rfcs/pull/554/) to deprecate `getWithDefault`
53-
- [spec](http://api.emberjs.com/ember/3.13/functions/@ember%2Fobject/getWithDefault)
53+
- [spec](https://api.emberjs.com/ember/3.13/functions/@ember%2Fobject/getWithDefault)
5454

5555
## Related Rules
5656

docs/rules/no-implicit-service-injection-argument.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ export default class Page extends Component {
3939
## References
4040

4141
* Ember [Services](https://guides.emberjs.com/release/applications/services/) guide
42-
* Ember [inject](https://emberjs.com/api/ember/release/functions/@ember%2Fservice/inject) function spec
42+
* Ember [inject](https://api.emberjs.com/ember/release/functions/@ember%2Fservice/inject) function spec

docs/rules/no-incorrect-calls-with-inline-anonymous-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ export default Component.extend({
6262
## References
6363

6464
- [Ember debounce API Docs](https://api.emberjs.com/ember/release/functions/@ember%2Frunloop/debounce)
65-
- [Ember once API Docs](http://api.emberjs.com/ember/release/functions/@ember%2Frunloop/once)
65+
- [Ember once API Docs](https://api.emberjs.com/ember/release/functions/@ember%2Frunloop/once)
6666
- [Ember scheduleOnce API Docs](https://api.emberjs.com/ember/release/functions/@ember%2Frunloop/scheduleOnce)

docs/rules/no-incorrect-computed-macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ export default Component.extend({
4343
## References
4444

4545
* [Guide](https://guides.emberjs.com/release/object-model/computed-properties/) for computed properties
46-
* [Spec](http://api.emberjs.com/ember/release/modules/@ember%2Fobject#functions-computed) for computed property macros
46+
* [Spec](https://api.emberjs.com/ember/release/modules/@ember%2Fobject#functions-computed) for computed property macros

docs/rules/no-invalid-debug-function-arguments.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ deprecate('Title is no longer supported.', title, { id: 'unwanted-title', until:
4242

4343
## Further Reading
4444

45-
* See the [documentation](https://www.emberjs.com/api/ember/release/functions/@ember%2Fdebug/assert) for the Ember `assert` function.
46-
* See the [documentation](https://www.emberjs.com/api/ember/release/functions/@ember%2Fdebug/warn) for the Ember `warn` function.
47-
* See the [documentation](https://emberjs.com/api/api/ember/release/functions/@ember%2Fapplication%2Fdeprecations/deprecate) for the Ember `deprecate` function.
45+
* See the [documentation](https://api.emberjs.com/ember/release/functions/@ember%2Fdebug/assert) for the Ember `assert` function.
46+
* See the [documentation](https://api.emberjs.com/ember/release/functions/@ember%2Fdebug/warn) for the Ember `warn` function.
47+
* See the [documentation](https://api.emberjs.com/ember/3.4/functions/@ember%2Fapplication%2Fdeprecations/deprecate) for the Ember `deprecate` function.

docs/rules/no-mixins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default Component.extend({
6262
## References
6363

6464
* [Mixins Considered Harmful](https://reactjs.org/blog/2016/07/13/mixins-considered-harmful.html)
65-
* [Why Are Mixins Considered Harmful?](http://raganwald.com/2016/07/16/why-are-mixins-considered-harmful.html)
65+
* [Why Are Mixins Considered Harmful?](https://raganwald.com/2016/07/16/why-are-mixins-considered-harmful.html)
6666

6767
## Related Rules
6868

docs/rules/no-new-mixins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ For practical strategies on removing mixins see [this discourse thread](https://
99
For more details and examples of how mixins create problems down-the-line, see these excellent blog posts:
1010

1111
* [Mixins Considered Harmful](https://reactjs.org/blog/2016/07/13/mixins-considered-harmful.html)
12-
* [Why Are Mixins Considered Harmful?](http://raganwald.com/2016/07/16/why-are-mixins-considered-harmful.html)
12+
* [Why Are Mixins Considered Harmful?](https://raganwald.com/2016/07/16/why-are-mixins-considered-harmful.html)
1313

1414
## Examples
1515

docs/rules/no-string-prototype-extensions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on these methods in addons, but that addon being used in an app that has the
88
extensions disabled.
99

1010
Additionally, the prototype extensions for the `String` object have been
11-
deprecated in [RFC #236](http://emberjs.github.io/rfcs/0236-deprecation-ember-string.html).
11+
deprecated in [RFC #236](https://emberjs.github.io/rfcs/0236-deprecation-ember-string.html).
1212

1313
## Rule Details
1414

@@ -64,4 +64,4 @@ dasherize('myString');
6464
## References
6565

6666
* [Prototype extensions documentation](https://guides.emberjs.com/release/configuring-ember/disabling-prototype-extensions/)
67-
* [String prototype extensions deprecation RFC](http://emberjs.github.io/rfcs/0236-deprecation-ember-string.html#string-prototype-extensions)
67+
* [String prototype extensions deprecation RFC](https://emberjs.github.io/rfcs/0236-deprecation-ember-string.html#string-prototype-extensions)

0 commit comments

Comments
 (0)