X Tutup
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# GitHub Copilot Instructions

## Code Style and Conventions

- Don't use fully qualified names for Java, Kotlin, or Groovy. Instead, add imports.
- Don't use wildcard imports. Please import items one by one instead. You can disable wildcard imports in your IDE
- Follow the code style defined in `graphql-java-code-style.xml`.

## Pull Request Review Guidelines

### Testing
- If you add new functionality, or correct a bug, you must also write a test so we can ensure your code works in the future
- If your pull request includes a performance improvement, please check in a JMH test to verify this. We'll then run a test on our isolated performance environment to verify the results
-
### Breaking Changes
- Flag any breaking changes in public APIs so we can call this out in documentation
Loading
X Tutup