From 5f199d68f9455b6b9d2dd7f5dc917959938f6d0d Mon Sep 17 00:00:00 2001 From: Kevin Lu <kevinlu1248@gmail.com> Date: Wed, 13 Sep 2023 18:49:11 -0700 Subject: [PATCH] Update sweep.yaml --- sweep.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/sweep.yaml b/sweep.yaml index 5253299a3..ccb434b59 100644 --- a/sweep.yaml +++ b/sweep.yaml @@ -7,5 +7,17 @@ branch: "main" 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: "" +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