Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ After writing or editing code, check LSP diagnostics and fix any type errors or

### Style

- **Formatter:** Prettier 3.7.4 — `prettier.config.mjs`
- **Linter (TS/JS):** ESLint 9.39.2 flat config — `ts-libs/eslint-config/`
- **Linter (Solidity):** Solhint 6.0.3 + Prettier plugin
- **Formatter:** Prettier 3.8.1 — `prettier.config.mjs`
- **Linter (TS/JS):** ESLint 9.39.4 flat config — `ts-libs/eslint-config/`
- **Linter (Solidity):** Solhint 6.2.1 + Prettier plugin
- **Linter (Kotlin/Java):** Spotless with ktlint + Google Java Format
- **Linter (Go):** gofmt + golangci-lint
- **Line length:** 120 characters
Expand Down Expand Up @@ -223,7 +223,7 @@ After writing or editing code, check LSP diagnostics and fix any type errors or
|------|----------|-------|
| Contracts (Hardhat) | Hardhat + ethers.js | `pnpm -F contracts run test` |
| Contracts (Foundry) | Forge | `test/foundry/*` |
| TypeScript packages | Jest 29.7.0 + ts-jest | `pnpm -F <pkg> run test` |
| TypeScript packages | Jest 30.3.0 + ts-jest | `pnpm -F <pkg> run test` |
| Coordinator | JUnit 5 + Mockito + WireMock | `./gradlew :coordinator:app:test` |
| Prover | Go test | `go test ./... -tags nocorset,fuzzlight` |
| E2E (protocol) | Jest | `pnpm -F e2e run test:local` |
Expand Down
2 changes: 1 addition & 1 deletion linea-besu/plugins/linea-sequencer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This repository hosts the implementation of the sequencer, the component of the Linea stack responsible for ordering transactions and building blocks, as well as executing them. It provides a set of [Besu](https://github.com/besu-eth/besu):Linea plugins.

It serves developers by making the Linea tech stack open source under the [Apache 2.0](../../LICENSE-APACHE) and the [MIT](../../LICENSE-MIT) licenses.
It serves developers by making the Linea tech stack open source under the [Apache 2.0](../../../LICENSE-APACHE) and the [MIT](../../../LICENSE-MIT) licenses.

## What is Linea?

Expand Down
2 changes: 1 addition & 1 deletion postman/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ postman/

### Testing

- Framework: Jest 29.7.0 with ts-jest preset
- Framework: Jest 30.3.0 with ts-jest preset
- Uses `jest-mock-extended` for mock generation
- `--forceExit` and `--detectOpenHandles` flags enabled
- Test files: `**/__tests__/*.test.ts` pattern
Expand Down
4 changes: 2 additions & 2 deletions ts-libs/sdk/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pnpm -F @consensys/linea-sdk-viem run lint
| Package | Build Tool | Output | Key Dependency |
|---------|-----------|--------|----------------|
| `sdk-core` | tsup | CJS + ESM + DTS | abitype |
| `sdk-ethers` | tsc (+ typechain pre-step) | CJS + DTS | ethers 6.13.7 |
| `sdk-ethers` | tsc (+ typechain pre-step) | CJS + DTS | ethers 6.16.0 |
| `sdk-viem` | tsup | CJS + ESM + DTS | viem (peer dep >= 2.22.0) |

### Dependency Chain
Expand All @@ -46,7 +46,7 @@ postman -> sdk-viem -> sdk-core

### Testing

- Framework: Jest 29.7.0 with ts-jest preset
- Framework: Jest 30.3.0 with ts-jest preset
- `sdk-ethers` uses `--forceExit` and `jest-mock-extended`
- Coverage: HTML, LCOV, and text reporters
- Test files: `*.test.ts` pattern
Expand Down
Loading