Skip to content

Commit a0cba4c

Browse files
committed
lint
1 parent 0e5201e commit a0cba4c

File tree

1,090 files changed

+109839
-113595
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,090 files changed

+109839
-113595
lines changed

.cursorignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.turbo/
2-
.vscode/
32
.cursorrules
43

54
**/dist/**

.devcontainer/devcontainer.json

+35-35
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
22
{
3-
"name": "elizaos-dev",
4-
"dockerFile": "Dockerfile",
5-
"build": {
6-
"args": {
7-
"NODE_VER": "23.5.0",
8-
"BUN_VER": "1.2.2"
9-
}
10-
},
11-
"privileged": true,
12-
"runArgs": [
13-
"-p=3000:3000", // Add port for server api
14-
"-p=5173:5173", // Add port for client
15-
//"--volume=/usr/lib/wsl:/usr/lib/wsl", // uncomment for WSL
16-
//"--volume=/mnt/wslg:/mnt/wslg", // uncomment for WSL
17-
"--gpus=all", // ! uncomment for vGPU
18-
//"--device=/dev/dxg", // uncomment this for vGPU under WSL
19-
"--device=/dev/dri"
20-
],
21-
"containerEnv": {
22-
//"MESA_D3D12_DEFAULT_ADAPTER_NAME": "NVIDIA", // uncomment for WSL
23-
//"LD_LIBRARY_PATH": "/usr/lib/wsl/lib" // uncomment for WSL
24-
},
25-
"customizations": {
26-
"vscode": {
27-
"extensions": [
28-
"vscode.json-language-features",
29-
"vscode.css-language-features",
30-
// "foxundermoon.shell-format",
31-
// "dbaeumer.vscode-eslint",
32-
// "esbenp.prettier-vscode"
33-
"ms-python.python"
34-
]
35-
}
36-
},
37-
"features": {}
3+
"name": "elizaos-dev",
4+
"dockerFile": "Dockerfile",
5+
"build": {
6+
"args": {
7+
"NODE_VER": "23.5.0",
8+
"BUN_VER": "1.2.2"
9+
}
10+
},
11+
"privileged": true,
12+
"runArgs": [
13+
"-p=3000:3000", // Add port for server api
14+
"-p=5173:5173", // Add port for client
15+
//"--volume=/usr/lib/wsl:/usr/lib/wsl", // uncomment for WSL
16+
//"--volume=/mnt/wslg:/mnt/wslg", // uncomment for WSL
17+
"--gpus=all", // ! uncomment for vGPU
18+
//"--device=/dev/dxg", // uncomment this for vGPU under WSL
19+
"--device=/dev/dri"
20+
],
21+
"containerEnv": {
22+
//"MESA_D3D12_DEFAULT_ADAPTER_NAME": "NVIDIA", // uncomment for WSL
23+
//"LD_LIBRARY_PATH": "/usr/lib/wsl/lib" // uncomment for WSL
24+
},
25+
"customizations": {
26+
"vscode": {
27+
"extensions": [
28+
"vscode.json-language-features",
29+
"vscode.css-language-features",
30+
// "foxundermoon.shell-format",
31+
// "dbaeumer.vscode-eslint",
32+
// "esbenp.prettier-vscode"
33+
"ms-python.python"
34+
]
35+
}
36+
},
37+
"features": {}
3838
}

.github/ISSUE_TEMPLATE/bug_report.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ""
5-
labels: "bug"
6-
assignees: ""
4+
title: ''
5+
labels: 'bug'
6+
assignees: ''
77
---
88

99
**Describe the bug**

.github/ISSUE_TEMPLATE/feature_request.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ""
5-
labels: "enhancement"
6-
assignees: ""
4+
title: ''
5+
labels: 'enhancement'
6+
assignees: ''
77
---
88

99
**Is your feature request related to a problem? Please describe.**

.github/dependabot.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "" # See documentation for possible values
9-
directory: "/" # Location of package manifests
8+
- package-ecosystem: '' # See documentation for possible values
9+
directory: '/' # Location of package manifests
1010
schedule:
11-
interval: "weekly"
11+
interval: 'weekly'

.github/workflows/ci.yaml

+4-6
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,11 @@ jobs:
1818

1919
- uses: actions/setup-node@v4
2020
with:
21-
node-version: "23"
21+
node-version: '23'
2222

2323
- name: Install dependencies
2424
run: bun install
2525

26-
- name: Setup Biome CLI
27-
uses: biomejs/setup-biome@v2
28-
with:
29-
version: latest
30-
3126
- name: Create test env file
3227
run: |
3328
echo "TEST_DATABASE_CLIENT=sqlite" > packages/core/.env.test
@@ -36,6 +31,9 @@ jobs:
3631
- name: Run tests
3732
run: cd packages/core && bun test:coverage
3833

34+
- name: Check format
35+
run: bun run format:check
36+
3937
- name: Run lint
4038
run: bun run lint
4139

.github/workflows/codeql.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: "CodeQL Advanced"
1+
name: 'CodeQL Advanced'
22

33
on:
44
push:
5-
branches: ["main", "develop"]
5+
branches: ['main', 'develop']
66
pull_request:
7-
branches: ["main", "develop"]
7+
branches: ['main', 'develop']
88
schedule:
9-
- cron: "29 8 * * 6"
9+
- cron: '29 8 * * 6'
1010

1111
jobs:
1212
analyze:
@@ -52,4 +52,4 @@ jobs:
5252
- name: Perform CodeQL Analysis
5353
uses: github/codeql-action/analyze@v3
5454
with:
55-
category: "/language:${{matrix.language}}"
55+
category: '/language:${{matrix.language}}'

.github/workflows/generate-readme-translations.yml

+26-26
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Generate Readme Translations
22
on:
33
push:
44
branches:
5-
- "1222--README-ci-auto-translation"
5+
- '1222--README-ci-auto-translation'
66

77
jobs:
88
translation:
@@ -11,28 +11,28 @@ jobs:
1111
matrix:
1212
language:
1313
[
14-
{ code: "CN", name: "Chinese" },
15-
{ code: "DE", name: "German" },
16-
{ code: "ES", name: "Spanish" },
17-
{ code: "FR", name: "French" },
18-
{ code: "HE", name: "Hebrew" },
19-
{ code: "IT", name: "Italian" },
20-
{ code: "JA", name: "Japanese" },
21-
{ code: "KOR", name: "Korean" },
22-
{ code: "PTBR", name: "Portuguese (Brazil)" },
23-
{ code: "RU", name: "Russian" },
24-
{ code: "TH", name: "Thai" },
25-
{ code: "TR", name: "Turkish" },
26-
{ code: "VI", name: "Vietnamese" },
27-
{ code: "AR", name: "Arabic" },
28-
{ code: "RS", name: "Srpski" },
29-
{ code: "TG", name: "Tagalog" },
30-
{ code: "PL", name: "Polski" },
31-
{ code: "HU", name: "Hungarian" },
32-
{ code: "FA", name: "Persian" },
33-
{ code: "RO", name: "Romanian" },
34-
{ code: "GR", name: "Greek" },
35-
{ code: "NL", name: "Dutch" },
14+
{ code: 'CN', name: 'Chinese' },
15+
{ code: 'DE', name: 'German' },
16+
{ code: 'ES', name: 'Spanish' },
17+
{ code: 'FR', name: 'French' },
18+
{ code: 'HE', name: 'Hebrew' },
19+
{ code: 'IT', name: 'Italian' },
20+
{ code: 'JA', name: 'Japanese' },
21+
{ code: 'KOR', name: 'Korean' },
22+
{ code: 'PTBR', name: 'Portuguese (Brazil)' },
23+
{ code: 'RU', name: 'Russian' },
24+
{ code: 'TH', name: 'Thai' },
25+
{ code: 'TR', name: 'Turkish' },
26+
{ code: 'VI', name: 'Vietnamese' },
27+
{ code: 'AR', name: 'Arabic' },
28+
{ code: 'RS', name: 'Srpski' },
29+
{ code: 'TG', name: 'Tagalog' },
30+
{ code: 'PL', name: 'Polski' },
31+
{ code: 'HU', name: 'Hungarian' },
32+
{ code: 'FA', name: 'Persian' },
33+
{ code: 'RO', name: 'Romanian' },
34+
{ code: 'GR', name: 'Greek' },
35+
{ code: 'NL', name: 'Dutch' },
3636
]
3737
permissions:
3838
contents: write
@@ -92,7 +92,7 @@ jobs:
9292
- name: Commit all translations
9393
uses: stefanzweifel/git-auto-commit-action@v5
9494
with:
95-
commit_message: "chore: update all README translations"
95+
commit_message: 'chore: update all README translations'
9696
branch: main
97-
file_pattern: "README_*.md"
98-
commit_author: "GitHub Action <actions@github.com>"
97+
file_pattern: 'README_*.md'
98+
commit_author: 'GitHub Action <actions@github.com>'

.github/workflows/integrationTests.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Integration Tests
33
on:
44
push:
55
branches:
6-
- "*"
6+
- '*'
77
pull_request_target:
88
branches:
9-
- "*"
9+
- '*'
1010

1111
env:
1212
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install Node.js
2727
uses: actions/setup-node@v4
2828
with:
29-
node-version: "23"
29+
node-version: '23'
3030

3131
- name: Install required packages
3232
run: |

0 commit comments

Comments
 (0)