Skip to content

Commit 03c48ef

Browse files
authored
chore(deps): moving from ESLint to Biome (#513)
* chore(deps): moving from ESLint to Biome * fix: node24 compat issues
1 parent 8445adb commit 03c48ef

18 files changed

+1112
-5714
lines changed

.eslintignore

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

.eslintrc

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

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2023, ReadMe
1+
Copyright (c) 2025, ReadMe
22

33
Permission to use, copy, modify, and/or distribute this software for any purpose
44
with or without fee is hereby granted, provided that the above copyright notice

biome.jsonc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3+
"extends": ["@readme/standards/biome"],
4+
"files": {
5+
"ignoreUnknown": false,
6+
"includes": ["**/*.{cjs,mjs,js,mts,ts}", "!coverage/**", "!dist/**"],
7+
},
8+
"linter": {
9+
"enabled": true,
10+
"domains": {
11+
"project": "all",
12+
"test": "all",
13+
},
14+
"rules": {
15+
"suspicious": {
16+
// This library makes fetch requests in the browser and needs to be able to set cookies.
17+
"noDocumentCookie": "off",
18+
},
19+
},
20+
},
21+
}

example.cjs

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

example.mjs

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

0 commit comments

Comments
 (0)