Skip to content
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

Contribute a Gemini Code Assist config #865

Merged
merged 1 commit into from
Feb 26, 2025
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
19 changes: 19 additions & 0 deletions .gemini/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# A configuration files for the Gemini Code Assist bot.
#
# https://developers.google.com/gemini-code-assist/docs/customize-gemini-behavior-github.

# No poems please.
have_fun: false
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😆


code_review:
# Options here are LOW, MEDIUM, HIGH, and CRITICAL. The default is MEDIUM.
comment_severity_threshold: MEDIUM

# Configure the behavior for PR opened events.
pull_request_opened:
# Keep the default of no help message comments when pull requests are opened.
help: false
# This is noisy; disable.
summary: false
# Keep this on for now.
code_review: true
17 changes: 17 additions & 0 deletions .gemini/styleguide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# The dart-lang Dart style guide

## Introduction

This style guide outlines the coding conventions for Dart code contributed to
dart-lang repositories. All Dart code should follow the Effective Dart style
guide (https://dart.dev/effective-dart/style).

## Contribution Guidelines

- larger or significant changes should be discussed in an issue before creating
a PR
- contributions to our repos should follow the Dart style guide and use 'dart
format'
- most changes should add an entry to the changelog and may need to rev the
pubspec package version
- changes to packages require corresponding tests