Skip to content

docs: fix linter errors for ajs-quick-reference page.#47635

Closed
regulas1 wants to merge 135 commits into
angular:mainfrom
regulas1:DocumentationUpdate47179
Closed

docs: fix linter errors for ajs-quick-reference page.#47635
regulas1 wants to merge 135 commits into
angular:mainfrom
regulas1:DocumentationUpdate47179

Conversation

@regulas1
Copy link
Copy Markdown

@regulas1 regulas1 commented Oct 5, 2022

This addresses a part of the issue
#47179

PR Checklist

Please check if your PR fulfills the following requirements:

PR Type

What kind of change does this PR introduce?

  • Bugfix
  • Feature
  • Code style update (formatting, local variables)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Documentation content changes
  • angular.io application / infrastructure changes
  • Other... Please describe:

What is the current behavior?

Issue Number: N/A

What is the new behavior?

Does this PR introduce a breaking change?

  • Yes
  • No

Other information

@pullapprove pullapprove Bot requested a review from jessicajaniuk October 5, 2022 08:29
@ngbot ngbot Bot added this to the Backlog milestone Oct 5, 2022
@jessicajaniuk
Copy link
Copy Markdown
Contributor

@regulas1 This change looks good, but looks like you'll need to rebase. CI is failing to run due to being behind.

@jessicajaniuk jessicajaniuk added target: patch This PR is targeted for the next patch release action: review The PR is still awaiting reviews from at least one requested reviewer labels Oct 5, 2022
@bob-watson bob-watson self-requested a review October 6, 2022 00:59
Copy link
Copy Markdown
Contributor

@bob-watson bob-watson left a comment

Choose a reason for hiding this comment

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

Thanks for tackling this--especially for your first PR!
This is a particularly challenging topic because it contains terms from AngularJS as well as Angular. As such, trying to make the linter happy is difficult. Nevertheless, you were able to get rid of quite a few errors!

I left a few comments and suggestions below.

Also, don't forget to update the @reviewed date!

Comment thread aio/content/guide/ajs-quick-reference.md Outdated
Comment thread aio/content/guide/ajs-quick-reference.md Outdated
Comment thread aio/content/guide/ajs-quick-reference.md Outdated
Comment thread aio/content/guide/ajs-quick-reference.md Outdated
Comment thread aio/content/guide/ajs-quick-reference.md Outdated
Comment thread aio/content/guide/ajs-quick-reference.md Outdated
Comment thread aio/content/guide/ajs-quick-reference.md Outdated
regulas1 and others added 8 commits October 6, 2022 20:52
Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>
Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>
Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>
Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>
Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>
Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>
Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>
@bob-watson
Copy link
Copy Markdown
Contributor

Thanks for the update!
Please see the comment in the reopened comment.

Also, after you make that change, could you squash the commits into a single commit? With that, we'll be able to merge this.

Thanks, again for your contribution!

@jessicajaniuk
Copy link
Copy Markdown
Contributor

@regulas1 Looks like you've merged main into your branch instead of rebasing and squashing. It seems to be causing issues with CI and conflicts. Can you fix that?

@regulas1
Copy link
Copy Markdown
Author

regulas1 commented Oct 7, 2022

@regulas1 Looks like you've merged main into your branch instead of rebasing and squashing. It seems to be causing issues with CI and conflicts. Can you fix that?

Yes I will fix that. Apologies.

Copy link
Copy Markdown
Contributor

@bob-watson bob-watson left a comment

Choose a reason for hiding this comment

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

LGTM.

Please squash the commits into a single commit with a commit messages that starts with docs:

Thanks!

@bob-watson bob-watson added the action: cleanup The PR is in need of cleanup, either due to needing a rebase or in response to comments from reviews label Oct 11, 2022
regulas1 and others added 3 commits October 15, 2022 23:14
This addresses a part of the issue
 #47179

Update aio/content/guide/ajs-quick-reference.md

Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>

Update aio/content/guide/ajs-quick-reference.md

Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>

Update aio/content/guide/ajs-quick-reference.md

Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>

Update aio/content/guide/ajs-quick-reference.md

Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>

Update aio/content/guide/ajs-quick-reference.md

Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>

Update aio/content/guide/ajs-quick-reference.md

Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>

Update aio/content/guide/ajs-quick-reference.md

Co-authored-by: Bob Watson <104218420+bob-watson@users.noreply.github.com>
 1�747536)

Adds the logic that will filter out unexposed inputs/outputs and apply the aliases that the author specified when writing the host directives.

PR Close #47536
dsnoeijer and others added 22 commits October 16, 2022 21:26
Previously we built DevTools for all browsers with version 2 of the manifest file format.

This commit includes a number of refactors and API additions that will enable us to build DevTools with version 3 of the manifest file format.

The manifest v3 build of Angular DevTools has been tested on Chrome, Edge, and Safari.

Notably, the Firefox version of Angular DevTools remains as a manifest v2 build. Firefox does not yet support manifest v3 in it's latest stable release. When Firefox makes this transition, a follow up PR will update the Firefox manifest file to version 3.

Because Firefox still needs v2, we need to keep some old v2 APIs around in our background page (service worker in v3) that will execute conditionally based on if the extension was built for v2 or v3. This is determined with the chrome.runtime.getManifest().manifest_version API.

PR Close #47575
See associated pull request for more information.

PR Close #47711
See associated pull request for more information.

PR Close #47551
See associated pull request for more information.

PR Close #47376
Add a new boolean attribute to NgOptimizedImage called `fill` which does the following:
* Removes the requirement for height and width
* Adds inline styling to cause the image to fill its containing element
* Adds a default `sizes` value of `100vw` which will cause the image to have a responsive srcset automatically generated

PR Close #47738
With this change we add a missing period to the error message.

PR Close #47744
Update labels as part of standardization

PR Close #47747
Update to the latest version of the feature triage action
Updates all of the comp: * labels to area: * instead

PR Close #47750
Update to the latest version of the action
 1�77735)

Wire up new github action for identifying g3-affecting PRs.

PR Close #47735
This update describes the content authoring and revision process in sufficient detail for technical and non-technical contributors to the angular.io documentation.

PR Close #47381
…rs` (#47758)

This commit updates the `provideHttpClient` function to return the `EnvironmentProviders` instead of a regular `Provider[]`, to make sure that the `provideHttpClient` can only be used where an environment is being setup.

PR Close #47758
Separated HTML elements with judicious use of space. It not only makes it easier to read the HTML; it also makes it consistent with the formatting of https://github.com/angular/angular/edit/main/aio/content/examples/what-is-angular/src/app/hello-world-bindings/hello-world-ngif.component.html.

PR Close #47331
…tom implementation (#47678)

The supported Node.js versions for the `@angular/compiler-cli` package (^14.15.0 || >=16.10.0)
allow for the use of the `recursive` option of `mkdirSync`.  Using the `recursive` option
removes the need to manually create each subdirectory in a given path.

PR Close #47678
@angular-robot angular-robot Bot added detected: breaking change PR contains a commit with a breaking change detected: deprecation PR contains a commit with a deprecation detected: feature PR contains a feature commit labels Oct 16, 2022
@jessicajaniuk
Copy link
Copy Markdown
Contributor

@regulas1 You will have to rebase and fix your commit history on this PR. You've merged changes from upstream/main rather than rebasing, and that's brought in a ton of extra commits. Please either rebase and squash or close and recreate a new clean PR.

@regulas1
Copy link
Copy Markdown
Author

Sorry about that trying to fix it, Ill create a new PR

@regulas1 regulas1 closed this Oct 17, 2022
@angular-automatic-lock-bot
Copy link
Copy Markdown

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot Bot locked and limited conversation to collaborators Nov 17, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

action: cleanup The PR is in need of cleanup, either due to needing a rebase or in response to comments from reviews action: review The PR is still awaiting reviews from at least one requested reviewer detected: breaking change PR contains a commit with a breaking change detected: deprecation PR contains a commit with a deprecation detected: feature PR contains a feature commit target: patch This PR is targeted for the next patch release

Projects

None yet

Development

Successfully merging this pull request may close these issues.