Skip to content

Commit 0805159

Browse files
authored
Merge pull request #9 from augmentcode/rich-incorporate-augment-as-agent
Add Augment as a model provider for agent mode
2 parents e67e58a + 88b0f08 commit 0805159

File tree

10 files changed

+1763
-923
lines changed

10 files changed

+1763
-923
lines changed

biome.jsonc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3+
"extends": ["ultracite/core"],
4+
"linter": {
5+
"rules": {
6+
"style": {
7+
"useBlockStatements": "off",
8+
"useNodejsImportProtocol": "warn",
9+
"noNonNullAssertion": "warn"
10+
},
11+
"suspicious": {
12+
"useAwait": "warn",
13+
"noExplicitAny": "warn"
14+
},
15+
"correctness": {
16+
"noUnusedVariables": "warn"
17+
},
18+
"performance": {
19+
"noBarrelFile": "warn"
20+
}
21+
}
22+
}
23+
}
24+

0 commit comments

Comments
 (0)