-
Notifications
You must be signed in to change notification settings - Fork 82.9k
Update Angular.gitignore #4756
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
Open
Open
Update Angular.gitignore #4756
+36
−23
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@jannoguer
jannoguer
force-pushed
the
main
branch
from
November 22, 2025 15:34
a4c8be2 to
2890f54
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
Reasons for making this change
This update modernizes the Angular .gitignore template to align with the latest Angular CLI defaults and community best practices. It removes obsolete patterns (like
.angular-cli.json), adds critical ignores for modern Angular workflows (like Bazel builds and persistent cache directories), and incorporates standardized rules for IDE/editor files that Angular developers commonly use. Crucially, it stops ignoring lockfiles (package-lock.json/yarn.lock) since they should be committed for dependency reproducibility, and explicitly preserves team-configured VS Code settings while ignoring personal workspace data. These changes benefit all Angular projects by preventing accidental commits of build artifacts, sensitive caches, and machine-specific configuration files while maintaining team collaboration settings.Links to documentation supporting these rule changes
Angular CLI default ignores
The official Angular workspace schematic template includes:
/.angular/cache,/dist,/out-tsc,/coverage,/bazel-out, and lockfile handling guidance:https://github.com/angular/angular-cli/blob/main/packages/schematics/angular/workspace/files/__dot__gitignore.template
Bazel build artifacts
Angular's Bazel builder documentation specifies ignoring
/bazel-*directories:https://bazel.build/remote/output-directories
VS Code configuration guidance
While not officially mandated by Angular, it's considered standard practice to commit essential VS Code configuration files (
tasks.json,launch.json,extensions.json) to ensure consistent editor behavior across development teams. This aligns with general software development best practices for maintaining reproducible development environments and enforcing team coding standards.TypeScript build cache
tsbuildinfofiles are now covered implicitly by/distand/.angular/cacheper TypeScript's incremental build docs:https://www.typescriptlang.org/tsconfig#tsBuildInfoFile
Environment files
.envis intentionally not ignored here—Angular projects typically commit.env.examplebut ignore.envvia project-specific rules (per the 12-factor app methodology). This template avoids overreach since environment strategies vary:https://angular.io/guide/build#configure-environment-specific-defaults
Merge and Approval Steps