-
Notifications
You must be signed in to change notification settings - Fork 10
/
sweep.yaml
24 lines (20 loc) · 1.1 KB
/
sweep.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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
branch: 'main'
blocked_dirs: [".github/"]
gha_enabled: True
description: 'Nounspace is a web and desktop app built with NextJS and as a power-user client for the Farcaster protocol (a sufficiently decentralized social media platform)'
# Default Values: https://github.com/sweepai/sweep/blob/main/sweep.yaml
docs:
- hub-nodejs: ["https://github.com/farcasterxyz/hub-monorepo/blob/main/packages/hub-nodejs/docs/README.md", "We use hub monorepo nodejs web to interact with the Farcaster protocol"]
- react-js: ["https://react.dev/reference/react", "We use react js as our frontend framework"]
- next-js: ["https://nextjs.org/docs", "We use nextjs on top of react js"]
sandbox:
install:
- yarn install --ignore-engines
check:
- yarn run prettier --write {file_path}
- yarn run eslint {file_path}
rules:
- "Any clearly inefficient or repeated code should be optimized or refactored."
- "Leftover TODOs in the code should be handled."