File tree 4 files changed +49
-4
lines changed
4 files changed +49
-4
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://biomejs.dev/schemas/1.5.3/schema.json" ,
3
+ "organizeImports" : {
4
+ "enabled" : false
5
+ },
6
+ "linter" : {
7
+ "enabled" : true ,
8
+ "rules" : {
9
+ "recommended" : true ,
10
+ "correctness" : {
11
+ "noUnusedVariables" : " error"
12
+ },
13
+ "suspicious" : {
14
+ "noExplicitAny" : " error"
15
+ },
16
+ "style" : {
17
+ "useConst" : " error" ,
18
+ "useImportType" : " off"
19
+ }
20
+ }
21
+ },
22
+ "formatter" : {
23
+ "enabled" : true ,
24
+ "indentStyle" : " space" ,
25
+ "indentWidth" : 4 ,
26
+ "lineWidth" : 100
27
+ },
28
+ "javascript" : {
29
+ "formatter" : {
30
+ "quoteStyle" : " single" ,
31
+ "trailingCommas" : " es5"
32
+ }
33
+ },
34
+ "files" : {
35
+ "ignore" : [
36
+ " dist/**/*" ,
37
+ " extra/**/*" ,
38
+ " node_modules/**/*"
39
+ ]
40
+ }
41
+ }
Original file line number Diff line number Diff line change 26
26
"axios" : " 1.7.9"
27
27
},
28
28
"devDependencies" : {
29
- "tsup" : " 8.3.5" ,
29
+ "@biomejs/biome" : " 1.5.3" ,
30
+ "tsup" : " ^8.3.5" ,
30
31
"vitest" : " 1.2.1"
31
32
},
32
33
"scripts" : {
33
34
"build" : " tsup --format esm --dts" ,
34
35
"dev" : " tsup --format esm --dts --watch" ,
35
- "lint" : " eslint --fix --cache ." ,
36
+ "lint" : " biome check src/" ,
37
+ "lint:fix" : " biome check --apply src/" ,
38
+ "format" : " biome format src/" ,
39
+ "format:fix" : " biome format --write src/" ,
36
40
"test" : " vitest run"
37
41
}
38
42
}
Original file line number Diff line number Diff line change 1
- import { elizaLogger , IAgentRuntime } from "@elizaos/core" ;
1
+ import { elizaLogger , type IAgentRuntime } from "@elizaos/core" ;
2
2
import { DefaultApiClient } from "ask-sdk-core" ;
3
3
import { services } from "ask-sdk-model" ;
4
4
import axios from "axios" ;
Original file line number Diff line number Diff line change 1
- import { Client , IAgentRuntime , elizaLogger } from "@elizaos/core" ;
1
+ import { type Client , type IAgentRuntime , elizaLogger } from "@elizaos/core" ;
2
2
import { AlexaClient } from "./alexa-client" ;
3
3
4
4
export const AlexaClientInterface : Client = {
You can’t perform that action at this time.
0 commit comments