Skip to content

Commit

Permalink
Mark a few gitignore code blocks more specifically (dart-lang#5187)
Browse files Browse the repository at this point in the history
Contributes to dart-lang#5177 and
dart-lang#3846
  • Loading branch information
parlough authored and Tony Sansone committed Jan 26, 2024
1 parent b9df2ff commit a82380e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/guides/libraries/private-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,26 @@ that your IDE or code editor, the pub tool, and other tools generate.
**Don't commit** the following files and directories
created by pub:

{% prettify none tag=pre+code %}
```gitignore
.dart_tool/
build/
pubspec.lock # Except for application packages
{% endprettify %}
```

**Don't commit** the API documentation directory
created by [`dart doc`](/tools/dart-doc):

{% prettify none tag=pre+code %}
```gitignore
doc/api/
{% endprettify %}
```

**Don't commit** files and directories
created by other development environments.
For example, if your development environment creates
any of the following files,
consider putting them in a global ignore file:

{% prettify none tag=pre+code %}
```gitignore
# IntelliJ
*.iml
*.ipr
Expand All @@ -48,7 +48,7 @@ consider putting them in a global ignore file:
# Mac
.DS_Store
{% endprettify %}
```

For more details, read on.

Expand Down

0 comments on commit a82380e

Please sign in to comment.