From f93efa2ea1c594922d9f6fe502c3bea43e6bdad2 Mon Sep 17 00:00:00 2001
From: Marcus Schiesser <mail@marcusschiesser.de>
Date: Thu, 11 Jan 2024 10:56:08 +0700
Subject: [PATCH] fix: disabled sweep (was trying to work on a draft PR)

---
 sweep.yaml | 22 ----------------------
 1 file changed, 22 deletions(-)
 delete mode 100644 sweep.yaml

diff --git a/sweep.yaml b/sweep.yaml
deleted file mode 100644
index 9d453b943..000000000
--- a/sweep.yaml
+++ /dev/null
@@ -1,22 +0,0 @@
-# Sweep AI turns bug fixes & feature requests into code changes (https://sweep.dev)
-# For details on our config file, check out our docs at https://docs.sweep.dev
-
-# If you use this be sure to frequently sync your default branch(main, master) to dev.
-branch: "main"
-# If you want to enable GitHub Actions for Sweep, set this to true.
-gha_enabled: False
-# This is the description of your project. It will be used by sweep when creating PRs. You can tell Sweep what's unique about your project, what frameworks you use, or anything else you want.
-# Here's an example: sweepai/sweep is a python project. The main api endpoints are in sweepai/api.py. Write code that adheres to PEP8.
-description: "LlamaIndexTS is a data framework in TypeScript for your LLM applications"
-
-sandbox:
-  install:
-    - npm install -g pnpm
-    - pnpm i
-    - pnpm add --save-dev prettier -w
-  check:
-    - pnpx prettier --write {file_path}
-    - pnpm eslint --fix {file_path}
-    - pnpx ts-node --type-check {file_path}
-    - pnpm test
-# Default Values: https://github.com/sweepai/sweep/blob/main/sweep.yaml
-- 
GitLab