Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions .gemini/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# See https://developers.google.com/gemini-code-assist/docs/customize-gemini-behavior-github#custom-configurations

have_fun: false # We are serious people in the Dart team!
code_review:
disable: false
comment_severity_threshold: MEDIUM
max_review_comments: 100
pull_request_opened:
help: true
summary: true
code_review: true
ignore_patterns: []
20 changes: 20 additions & 0 deletions .gemini/styleguide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Dart Style Guide

This style guide outlines the coding conventions for contributions to the
`dart-lang/**` repositories.

## Best Practices

- Follow [the contribution guide](CONTRIBUTING.md).
- Code should be tested.
- Write code follow the guidance described in [effective Dart](https://dart.dev/effective-dart).

## General Philosophy

- Optimize for readability - code is read more often than it is written.

## Documentation

- At least all public members should have documentation, answering the *why*.
- Assume the reader does not know everything. Link to definitions.
- Provide sample code.