Skip to content

Commit 841a52b

Browse files
authored
Merge 68357ab into c26cc63
2 parents c26cc63 + 68357ab commit 841a52b

File tree

840 files changed

+8062
-7291
lines changed

Some content is hidden

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

840 files changed

+8062
-7291
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# Unix-style newlines with a newline ending every file
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
indent_style = space
9+
indent_size = 2

.eslintrc.js

-275
This file was deleted.

.github/workflows/test.yml

-3
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ jobs:
6464
- name: Assert ESM module exports
6565
run: node scripts/assert_exports.mjs
6666

67-
- name: Assert eslintrc rules sorted
68-
run: scripts/assert_eslintrc_sorted.mjs
69-
7067
type-checks:
7168
name: Type Checks
7269
needs: build

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ validators
2727
.tmp
2828
.npmrc
2929
.vscode/launch.json
30-
.vscode/settings.json
30+
!.vscode/settings.json
3131
.vscode/tasks.json
3232

3333
# Tests artifacts

.prettierignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
**/.nyc_output
33
/packages/*/spec-tests
44
node_modules
5-
**/node_modules
5+
**/node_modules
6+
*.js
7+
*.ts

.vscode/extensions.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"biomejs.biome",
4+
"esbenp.prettier-vscode"
5+
]
6+
}

.vscode/settings.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"window.title": "${activeEditorShort}${separator}${rootName}${separator}${profileName}${separator}[${activeRepositoryBranchName}]",
3+
"editor.defaultFormatter": "esbenp.prettier-vscode",
4+
// For `sysoev.vscode-open-in-github` extension
5+
"openInGitHub.defaultBranch": "unstable",
6+
"editor.formatOnSave": true,
7+
"editor.codeActionsOnSave": {
8+
"source.fixAll.biome": "explicit",
9+
},
10+
"[javascript]": {
11+
"editor.defaultFormatter": "biomejs.biome"
12+
},
13+
"[typescript]": {
14+
"editor.defaultFormatter": "biomejs.biome"
15+
},
16+
"[json]": {
17+
"editor.defaultFormatter": "biomejs.biome"
18+
},
19+
"[jsonc]": {
20+
"editor.defaultFormatter": "biomejs.biome"
21+
}
22+
}

.wordlist.txt

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ EIPs
2626
EL
2727
ENR
2828
ENRs
29-
ESLint
3029
ETH
3130
Edgington
3231
Erigon

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To run tests:
3131
- :test_tube: Run `yarn test:spec` for spec tests.
3232
- :test_tube: Run `yarn test` to run all tests.
3333
- :test_tube: Run `yarn check-types` to check TypeScript types.
34-
- :test_tube: Run `yarn lint` to run the linter (ESLint).
34+
- :test_tube: Run `yarn lint` to run the linter.
3535

3636
Note that to run `test:e2e`, first ensure that the environment is correctly setup by running the `run_e2e_env.sh` script. This script requires a running docker engine.
3737

0 commit comments

Comments
 (0)