Skip to content

Commit 3674693

Browse files
authored
Merge pull request #1011 from hirosystems/develop
3.0 release
2 parents 2d1d8b5 + 8481bca commit 3674693

File tree

1,189 files changed

+47728
-74881
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,189 files changed

+47728
-74881
lines changed

.env-example

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
NEXT_PUBLIC_ALGOLIA_APP_ID=
2-
NEXT_PUBLIC_ALGOLIA_API_KEY=
3-
NEXT_PUBLIC_ALGOLIA_INDEX=
41
NEXT_PUBLIC_GTM_ID=
2+
LLMS_BASE_URL=

.eslintrc.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"extends": ["next/core-web-vitals", "next/typescript"],
33
"rules": {
4-
"@typescript-eslint/no-explicit-any": "off"
4+
"@typescript-eslint/no-explicit-any": "off",
5+
"react-hooks/rules-of-hooks": "off",
6+
"@next/next/no-img-element": "off",
7+
"@typescript-eslint/no-empty-object-type": "off",
8+
"@typescript-eslint/no-unused-vars": "off",
9+
"react-hooks/exhaustive-deps": "off"
510
}
611
}

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/mlc_config.json

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/board-automation.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/linkcheck-prs.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/linkcheck.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: linkcheck
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
8+
workflow_dispatch:
9+
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
18+
- name: Set up Bun
19+
uses: oven-sh/setup-bun@v1
20+
with:
21+
bun-version: latest
22+
23+
- name: Install dependencies
24+
run: bun install --frozen-lockfile
25+
26+
- name: Generate llms.txt files
27+
run: bun run generate-llms
28+
env:
29+
LLMS_BASE_URL: https://docs.hiro.so
30+
31+
- name: Run link validation
32+
run: bun run lint

.github/workflows/stylecheck-prs.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.gitignore

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
11
bun.lockb
22
node_modules
3-
openapi
3+
/openapi
44
.DS_Store
55
**/.DS_Store
66
.env
77
.env.local
88
.cache
99
.cursorrules
1010
.next
11-
tmp
11+
.source/
12+
tmp
13+
.cursor/
14+
.claude/
15+
16+
# Local workflow files
17+
/tasks/**
18+
*.local.*
19+
20+
# Generated files
21+
public/**/*.txt
22+
/generated

.map.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)