Skip to content

Commit

Permalink
Adds Intellij IDEA files to .gitignore (#3389)
Browse files Browse the repository at this point in the history
### Motivation and Context

Intellij IDEA is heavy used in the Java ecosystem, so it would be good
to have default files in the .gitignore

### Description

Add the default Intellij IDEA working files and directory to the
.gitignore

### Contribution Checklist

<!-- Before submitting this PR, please make sure: -->

- [x] The code builds clean without any errors or warnings
- [x] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [x] All unit tests pass, and I have added new tests where possible
- [x] I didn't break anyone 😄

Co-authored-by: Bruno Borges <brborges@microsoft.com>
Co-authored-by: David Grieve <dsgrieve@yahoo.com>
  • Loading branch information
3 people authored Nov 11, 2023
1 parent c4525e3 commit f46ac77
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -409,14 +409,19 @@ FodyWeavers.xsd
*.key
*.pem

# JetBrains IntelliJ
.idea
*.ipr
*.iml
*.iws

.env
certs/
launchSettings.json
config.development.yaml
*.development.config
*.development.json
.DS_Store
.idea/
node_modules/
obj/
bin/
Expand Down

0 comments on commit f46ac77

Please sign in to comment.