Skip to content
Open
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,6 @@ node_modules/
*.log
# Desktop Service Store
*.DS_Store

# JetBrains IDEs
.idea
Comment on lines +52 to +54
Copy link
Member

Choose a reason for hiding this comment

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

This one falls a bit outside our scope, but I think the cleanest solution here is a user-scoped global gitignore file — that way it applies across all your repos without any per-project configuration.

I personally keep a ~/.gitignore_global with entries like:

*~
.DS_Store
.idea/*
.vscode/*
cmake-build-debug/*
.claude/settings.local.json

Just don't forget to register it with Git:

git config --global core.excludesfile ~/.gitignore_global

8 changes: 8 additions & 0 deletions bugbug/tools/build_repair/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.

from bugbug.tools.build_repair.agent import AgentResponse, BuildFailure, BuildRepairTool

__all__ = ["AgentResponse", "BuildFailure", "BuildRepairTool"]
Comment on lines +6 to +8
Copy link
Member

Choose a reason for hiding this comment

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

This is not needed since we already import from the submodules directly.

Loading