From 81043baf567c3fb6ae0d329d52cf6718e730865a Mon Sep 17 00:00:00 2001 From: Marko Rakita Date: Mon, 25 Nov 2024 16:59:59 +0100 Subject: [PATCH] Add codeowners and improve gitignore list (#84) Add codeowners and improve gitignore list --- .github/CODEOWNERS | 1 + .gitignore | 36 ++++++++++++++++-------------------- 2 files changed, 17 insertions(+), 20 deletions(-) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..eb358c99 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @ajakovljevicTT @kmitrovicTT @mrakitaTT diff --git a/.gitignore b/.gitignore index a37c7c38..87db8882 100644 --- a/.gitignore +++ b/.gitignore @@ -1,26 +1,22 @@ +# Project build/ +install/ +third_party/loguru +third_party/tt-mlir -bazel-* -*.egg-info -*.whl -.env -.env.sh -env.bazelrc -external/ +# IDE .vscode/ + +# Python __pycache__/ -user.bazelrc -__pycache__/ -*.venv +.env +.venv +env/ +venv/* +!venv/activate +.env.sh +*.egg-info +*.whl + # Packaging scripts write artifacts here. bindist/ - -### Automatically added by Hedron's Bazel Compile Commands Extractor: https://github.com/hedronvision/bazel-compile-commands-extractor -# Ignore the `external` link (that is added by `bazel-compile-commands-extractor`). The link differs between macOS/Linux and Windows, so it shouldn't be checked in. The pattern must not end with a trailing `/` because it's a symlink on macOS/Linux. -/external -# Ignore links to Bazel's output. The pattern needs the `*` because people can change the name of the directory into which your repository is cloned (changing the `bazel-` symlink), and must not end with a trailing `/` because it's a symlink on macOS/Linux. -/bazel-* -# Ignore generated output. Although valuable (after all, the primary purpose of `bazel-compile-commands-extractor` is to produce `compile_commands.json`!), it should not be checked in. -/compile_commands.json -# Ignore the directory in which `clangd` stores its local index. -/.cache/